11 lines
257 B
Python
11 lines
257 B
Python
from typer.testing import CliRunner
|
|
|
|
from job_research.cli import app
|
|
|
|
|
|
def test_cli_help_exposes_single_build_command() -> None:
|
|
result = CliRunner().invoke(app, ["--help"])
|
|
|
|
assert result.exit_code == 0
|
|
assert "build-profile" in result.stdout
|