unittest.TestCase.skipTest()

skipTest(reason) Calling this during a test method or setUp() skips the current test. See Skipping tests

2016-10-07 17:46:29
doctest.OutputChecker

class doctest.OutputChecker A class used to check the whether the actual output from a doctest example matches the expected

2016-10-07 17:32:13
doctest.testmod()

doctest.testmod(m=None, name=None, globs=None, verbose=None, report=True, optionflags=0, extraglobs=None, raise_on_error=False, exclude_empty=False)

2016-10-07 17:32:15
unittest.TestCase.assertWarns()

assertWarns(warning, callable, *args, **kwds) assertWarns(warning, msg=None) Test that a warning is triggered when

2016-10-07 17:46:25
unittest.removeResult()

unittest.removeResult(result) Remove a registered result. Once a result has been removed then stop() will no longer

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

assertIsNot(first, second, msg=None) Test that first and second evaluate (or don’t evaluate) to the same object

2016-10-07 17:46:20
unittest.TestResult.stopTest()

stopTest(test) Called after the test case test has been executed, regardless of the outcome.

2016-10-07 17:46:37
doctest.DocTest.globs

globs The namespace (aka globals) that the examples should be run in. This is a dictionary mapping names to values. Any changes

2016-10-07 17:32:07
unittest.TestResult.startTest()

startTest(test) Called when the test case test is about to be run.

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

assertNotAlmostEqual(first, second, places=7, msg=None, delta=None) Test that first and second are approximately

2016-10-07 17:46:22