doctest.testfile()

doctest.testfile(filename, module_relative=True, name=None, package=None, globs=None, verbose=None, report=True, optionflags=0, extraglobs=None, raise_on_error=False

2016-10-07 17:32:14
test.support.skip_unless_symlink()

@test.support.skip_unless_symlink A decorator for running tests that require support for symbolic links.

2016-10-07 17:44:26
unittest.mock.Mock.call_count

call_count An integer telling you how many times the mock object has been called:

2016-10-07 17:46:09
unittest.TestCase.assertListEqual()

assertListEqual(first, second, msg=None) assertTupleEqual(first, second, msg=None) Tests that two lists or tuples

2016-10-07 17:46:21
unittest.TestResult.stop()

stop() This method can be called to signal that the set of tests being run should be aborted by setting the shouldStop

2016-10-07 17:46:37
unittest.TestCase.doCleanups()

doCleanups() This method is called unconditionally after tearDown(), or after setUp() if setUp()

2016-10-07 17:46:26
unittest.mock.Mock.reset_mock()

reset_mock() The reset_mock method resets all the call attributes on a mock object:

2016-10-07 17:46:10
unittest.TextTestResult

class unittest.TextTestResult(stream, descriptions, verbosity) A concrete implementation of TestResult used by

2016-10-07 17:46:40
unittest.TestSuite.

__iter__() Tests grouped by a TestSuite are always accessed by iteration. Subclasses can lazily provide tests by

2016-10-07 17:46:40
unittest.TestSuite.addTest()

addTest(test) Add a TestCase or TestSuite to the suite.

2016-10-07 17:46:39