doctest.UnexpectedException.example

UnexpectedException.example The Example that failed.

2016-10-07 17:32:15
doctest.Example.indent

indent The example’s indentation in the containing string, i.e., the number of space characters that precede the example’s first

2016-10-07 17:32:12
typing.NamedTuple()

typing.NamedTuple(typename, fields) Typed version of namedtuple. Usage:

2016-10-07 17:45:57
unittest.TestLoader.errors

errors A list of the non-fatal errors encountered while loading tests. Not reset by the loader at any point. Fatal errors are

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

defaultTestResult() Return an instance of the test result class that should be used for this test case class (if no other result

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

assertLogs(logger=None, level=None) A context manager to test that at least one message is logged on the logger or

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

addTypeEqualityFunc(typeobj, function) Registers a type-specific method called by assertEqual() to check if two

2016-10-07 17:46:17
unittest.mock.call.call_list()

call.call_list() For a call object that represents multiple calls, call_list() returns a list of all the intermediate

2016-10-07 17:46:06
doctest.DocTestFailure

exception doctest.DocTestFailure(test, example, got) An exception raised by DocTestRunner to signal that a doctest

2016-10-07 17:32:07
unittest.mock.create_autospec()

unittest.mock.create_autospec(spec, spec_set=False, instance=False, **kwargs) Create a mock object using another object as a

2016-10-07 17:46:07