Skip to content

Commit

Permalink
Merge 103ddf0 into 7b63cc7
Browse files Browse the repository at this point in the history
  • Loading branch information
mrahnis committed May 31, 2020
2 parents 7b63cc7 + 103ddf0 commit 331610b
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,45 @@ def test_surficial():
runner = CliRunner()
result = runner.invoke(cli, ['--help'])
assert result.exit_code == 0


def test_buffer():
runner = CliRunner()
result = runner.invoke(cli, ['buffer', '--help'])
assert result.exit_code == 0


def test_identify():
runner = CliRunner()
result = runner.invoke(cli, ['identify', '--help'])
assert result.exit_code == 0


def test_network():
runner = CliRunner()
result = runner.invoke(cli, ['network', '--help'])
assert result.exit_code == 0


def test_plan():
runner = CliRunner()
result = runner.invoke(cli, ['plan', '--help'])
assert result.exit_code == 0


def test_profile():
runner = CliRunner()
result = runner.invoke(cli, ['profile', '--help'])
assert result.exit_code == 0


def test_repair():
runner = CliRunner()
result = runner.invoke(cli, ['repair', '--help'])
assert result.exit_code == 0


def test_station():
runner = CliRunner()
result = runner.invoke(cli, ['station', '--help'])
assert result.exit_code == 0

0 comments on commit 331610b

Please sign in to comment.