webcheck/tests/test_cli_main.py
2024-01-11 14:36:01 +00:00

10 lines
170 B
Python

import pytest
from cli import cli
def test_cli_main(capsys):
output = "Hello\n"
cli.main()
captured = capsys.readouterr()
assert captured.out == output