unittest.mock.Mock.attach_mock()

attach_mock(mock, attribute) Attach a mock as an attribute of this one, replacing its name and parent. Calls to the attached

2016-10-07 17:46:08
doctest.OutputChecker.check_output()

check_output(want, got, optionflags) Return True iff the actual output from an example (got) matches the

2016-10-07 17:32:13
unittest.TestResult.shouldStop

shouldStop Set to True when the execution of tests should stop by stop().

2016-10-07 17:46:36
doctest.UnexpectedException

exception doctest.UnexpectedException(test, example, exc_info) An exception raised by DocTestRunner to signal that

2016-10-07 17:32:15
typing.Set

class typing.Set(set, MutableSet[T]) A generic version of

2016-10-07 17:45:58
unittest.TestCase.assertGreaterEqual()

assertGreaterEqual(first, second, msg=None) assertLess(first, second, msg=None) assertLessEqual(first, second

2016-10-07 17:46:19
doctest.run_docstring_examples()

doctest.run_docstring_examples(f, globs, verbose=False, name="NoName", compileflags=None, optionflags=0) Test examples associated

2016-10-07 17:32:14
unittest.TestCase.shortDescription()

shortDescription() Returns a description of the test, or None if no description has been provided. The default

2016-10-07 17:46:28
doctest.DocTestRunner

class doctest.DocTestRunner(checker=None, verbose=None, optionflags=0) A processing class used to execute and verify the interactive

2016-10-07 17:32:10
doctest.DocTestRunner.run()

run(test, compileflags=None, out=None, clear_globs=True) Run the examples in test (a DocTest object),

2016-10-07 17:32:11