module documentation

Hamcrest matchers useful throughout the test suite.

Function after Create a matcher which calls f and uses m to match the result.
Function fileContents Create a matcher which matches a FilePath the contents of which are matched by m.
Class _MatchAfter The implementation of after.
Type Variable _A Undocumented
Type Variable _B Undocumented
def after(f, m): (source)

Create a matcher which calls f and uses m to match the result.

Parameters
f:Callable[[_A], _B]Undocumented
m:Matcher[_B]Undocumented
Returns
Matcher[_A]Undocumented
def fileContents(m, encoding='utf-8'): (source)

Create a matcher which matches a FilePath the contents of which are matched by m.

Parameters
m:Matcher[str]Undocumented
encoding:strUndocumented
Returns
Matcher[IFilePath]Undocumented

Undocumented

Value
TypeVar('_A')

Undocumented

Value
TypeVar('_B')