##// END OF EJS Templates
test 3.0
test 3.0

File last commit:

r1113:f2689c814816
r1222:8e3e1ad5000f v3.0-devel
Show More
test_cli.py
29 lines | 725 B | text/x-python | PythonLexer
José Chávez
primer generate basic
r934 import pytest
from click.testing import CliRunner
Juan C. Espinoza
Move schaincli to schainpy.cli
r1113 from schainpy.cli import cli
José Chávez
primer generate basic
r934
@pytest.fixture
def runner():
return CliRunner()
def test_cli(runner):
result = runner.invoke(cli.main)
assert result.exit_code == 0
assert not result.exception
assert result.output.strip() == 'Hello, world.'
def test_cli_with_option(runner):
result = runner.invoke(cli.main, ['--as-cowboy'])
assert not result.exception
assert result.exit_code == 0
assert result.output.strip() == 'Howdy, world.'
def test_cli_with_arg(runner):
result = runner.invoke(cli.main, ['Jicamarca'])
assert result.exit_code == 0
assert not result.exception
assert result.output.strip() == 'Hello, Jicamarca.'