test.support.temp_umask()

test.support.temp_umask(umask) A context manager that temporarily sets the process umask.

2016-10-07 17:44:26
unittest.TestLoader.sortTestMethodsUsing

sortTestMethodsUsing Function to be used to compare method names when sorting them in getTestCaseNames() and all

2016-10-07 17:46:32
unittest.TestCase.maxDiff

maxDiff This attribute controls the maximum length of diffs output by assert methods that report diffs on failure. It defaults

2016-10-07 17:46:27
unittest.mock.MagicMock

class unittest.mock.MagicMock(*args, **kw) MagicMock is a subclass of Mock with default implementations

2016-10-07 17:46:07
typing.no_type_check()

@typing.no_type_check(arg) Decorator to indicate that annotations are not type hints. The argument

2016-10-07 17:45:57
test.support.requires()

test.support.requires(resource, msg=None) Raise ResourceDenied if resource is not available. msg

2016-10-07 17:44:24
doctest.set_unittest_reportflags()

doctest.set_unittest_reportflags(flags) Set the doctest reporting flags to use. Argument

2016-10-07 17:32:14
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
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.TestCase.countTestCases()

countTestCases() Return the number of tests represented by this test object. For TestCase instances, this will

2016-10-07 17:46:25