8 lines
141 B
Python
8 lines
141 B
Python
import pytest
|
|
from helpers import cli
|
|
|
|
|
|
def test_help() -> None:
|
|
with pytest.raises(SystemExit):
|
|
cli.run(["clan-app", "--help"])
|