unittest.TestLoader.testMethodPrefix

testMethodPrefix String giving the prefix of method names which will be interpreted as test methods. The default value is 'test'

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

debug() Run the test without collecting the result. This allows exceptions raised by the test to be propagated to the caller

2016-10-07 17:46:25
test.support.change_cwd()

test.support.change_cwd(path, quiet=False) A context manager that temporarily changes the current working directory to path

2016-10-07 17:44:22
doctest.DocTestParser.get_examples()

get_examples(string, name='') Extract all doctest examples from the given string, and return them as a list of Example

2016-10-07 17:32:09
doctest.UnexpectedException.exc_info

UnexpectedException.exc_info A tuple containing information about the unexpected exception, as returned by

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

class typing.Optional Optional type. Optional[X] is equivalent to Union[X

2016-10-07 17:45:58
doctest.DocFileSuite()

doctest.DocFileSuite(*paths, module_relative=True, package=None, setUp=None, tearDown=None, globs=None, optionflags=0, parser=DocTestParser(), encoding=None)

2016-10-07 17:32:06
typing.Any

class typing.Any Special type indicating an unconstrained type. Any object

2016-10-07 17:45:54
test.support.is_jython

test.support.is_jython True if the running interpreter is Jython.

2016-10-07 17:44:24
unittest.TestCase.failureException

failureException This class attribute gives the exception raised by the test method. If a test framework needs to use a specialized

2016-10-07 17:46:26