Skip to content

Releases: facundobatista/logassert

Release v7

20 May 15:36
91037ee
Compare
Choose a tag to compare
  • Teardown the handler after test run

Release 6

25 Oct 22:03
e4e8be3
Compare
Choose a tag to compare
  • Simple way to check that nothing was logged (on any level or a specific one):
    assert NOTHING in logs.debug
  • Helper to check that several lines were logged one after the other:
    assert Sequence(
        "Got 1 error and \d+ warnings:",
        Exact("  error: bar"),
    ) in logs.debug