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: Callable[[_A], _B], m: Matcher[_B]) -> Matcher[_A]:

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

def fileContents(m: Matcher[str], encoding: str = 'utf-8') -> Matcher[IFilePath]:

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

_A =

Undocumented

Value
TypeVar('_A')
_B =

Undocumented

Value
TypeVar('_B')