unittest.TestCase.assertWarns()

assertWarns(warning, callable, *args, **kwds) assertWarns(warning, msg=None) Test that a warning is triggered when

2016-10-07 17:46:25
typing.Sequence

class typing.Sequence(Sized, Iterable[T_co], Container[T_co]) A generic version of

2016-10-07 17:45:58
unittest.defaultTestLoader

unittest.defaultTestLoader Instance of the TestLoader class intended to be shared. If no customization of the

2016-10-07 17:46:04
doctest.DocTest

class doctest.DocTest(examples, globs, name, filename, lineno, docstring) A collection of doctest examples that should be run

2016-10-07 17:32:06
typing.Tuple

class typing.Tuple Tuple type; Tuple[X, Y] is the type of a tuple of two items with the first item of type X and

2016-10-07 17:45:59
unittest.mock.Mock.assert_called_with()

assert_called_with(*args, **kwargs) This method is a convenient way of asserting that calls are made in a particular way:

2016-10-07 17:46:08
unittest.TestCase.skipTest()

skipTest(reason) Calling this during a test method or setUp() skips the current test. See Skipping tests

2016-10-07 17:46:29
unittest.TestCase.assertIn()

assertIn(first, second, msg=None) assertNotIn(first, second, msg=None) Test that first is (or is not) in

2016-10-07 17:46:19
unittest.TestLoader.suiteClass

suiteClass Callable object that constructs a test suite from a list of tests. No methods on the resulting object are needed

2016-10-07 17:46:32
unittest.TextTestRunner

class unittest.TextTestRunner(stream=None, descriptions=True, verbosity=1, failfast=False, buffer=False, resultclass=None, warnings=None, *, tb_locals=False)

2016-10-07 17:46:41