unittest.TestCase.assertNotIsInstance()

assertNotIsInstance(obj, cls, msg=None) Test that obj is (or is not) an instance of cls (which can be a class

2016-10-07 17:46:22
unittest.TestCase.assertEqual()

assertEqual(first, second, msg=None) Test that first and second are equal. If the values do not compare equal

2016-10-07 17:46:18
unittest.TestLoader.loadTestsFromModule()

loadTestsFromModule(module, pattern=None) Return a suite of all tests cases contained in the given module. This method searches

2016-10-07 17:46:31
unittest.TestCase.assertFalse()

assertFalse(expr, msg=None) Test that expr is true (or false). Note that this is equivalent

2016-10-07 17:46:18
test.support.EnvironmentVarGuard

class test.support.EnvironmentVarGuard Class used to temporarily set or unset environment variables. Instances can be used as

2016-10-07 17:44:23
unittest.TestCase.assertLess()

assertLess(first, second, msg=None) assertLessEqual(first, second, msg=None) Test that first is respectively

2016-10-07 17:46:21
typing.Optional

class typing.Optional Optional type. Optional[X] is equivalent to Union[X

2016-10-07 17:45:58
test.support.findfile()

test.support.findfile(filename, subdir=None) Return the path to the file named filename. If no match is found filename

2016-10-07 17:44:23
doctest.DocTestParser.get_examples()

get_examples(string, name='') Extract all doctest examples from the given string, and return them as a list of Example

2016-10-07 17:32:09
typing.Container

class typing.Container(Generic[T_co]) A generic version of

2016-10-07 17:45:55