10 lines
170 B
Python
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
|