unittest.TestCase.addCleanup()

addCleanup(function, *args, **kwargs) Add a function to be called after tearDown() to cleanup resources used during

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

assertLessEqual(first, second, msg=None) Test that first is respectively >, >=, < or <= than second

2016-10-07 17:46:21
unittest.TestLoader.loadTestsFromTestCase()

loadTestsFromTestCase(testCaseClass) Return a suite of all tests cases contained in the TestCase-derived

2016-10-07 17:46:32
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
doctest.DocTestFailure.test

DocTestFailure.test The DocTest object that was being run when the example failed.

2016-10-07 17:32:08
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.TestSuite.

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

2016-10-07 17:46:40
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.TestSuite.addTest()

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

2016-10-07 17:46:39
test.support.verbose

test.support.verbose True when verbose output is enabled. Should be checked when more detailed information is desired

2016-10-07 17:44:27