c647f9dbd9
* test: config fetch coverage * ci: add test runner * test: add test stubs * chore: move twine and wheel to bootstrap * infra: add test inv * refactor: review for testability * test: use case testing
7 lines
199 B
Python
7 lines
199 B
Python
import pytest
|
|
|
|
def assert_captured_output_matches_snapshot(capsys, snapshot):
|
|
captured_out = capsys.readouterr()
|
|
|
|
assert captured_out.out == snapshot
|
|
assert captured_out.err == snapshot
|