17 lines
434 B
Python
17 lines
434 B
Python
"""Test cases for the __main__ module."""
|
|
import pytest
|
|
from click.testing import CliRunner
|
|
from spiffworkflow_backend import __main__
|
|
|
|
|
|
@pytest.fixture
|
|
def runner() -> CliRunner:
|
|
"""Fixture for invoking command-line interfaces."""
|
|
return CliRunner()
|
|
|
|
|
|
def test_main_succeeds(runner: CliRunner) -> None:
|
|
"""It exits with a status code of zero."""
|
|
result = runner.invoke(__main__.main)
|
|
assert result.exit_code == 0
|