File size: 313 Bytes
fcca8c8 | 1 2 3 4 5 6 7 8 9 10 11 12 | """pytest tests for axolotl CLI --version"""
from axolotl.cli.main import cli
def test_print_version(cli_runner):
"""Test that version is printed when --version is used."""
result = cli_runner.invoke(cli, ["--version"])
assert result.exit_code == 0
assert "axolotl, version " in result.output
|