Skip to content

Commit

Permalink
Merge bc08e94 into 7b63cc7
Browse files Browse the repository at this point in the history
  • Loading branch information
mrahnis committed May 31, 2020
2 parents 7b63cc7 + bc08e94 commit 0d1c9bf
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ The CLI displays matplotlib plots of showing long-profile or plan view maps. It
.. image:: https://ci.appveyor.com/api/projects/status/b2989f95rg6o1hcn?svg=true
:target: https://ci.appveyor.com/project/mrahnis/surficial

.. image:: https://github.com/mrahnis/surficial/workflows/Python%20package/badge.svg
:target: https://github.com/mrahnis/surficial/actions?query=workflow%3A%22Python+package%22
:alt: Python Package

.. image:: https://readthedocs.org/projects/surficial/badge/?version=latest
:target: http://surficial.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
Expand Down
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 0d1c9bf

Please sign in to comment.