Skip to content

Commit

Permalink
Add some smoke tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hfjn committed Sep 18, 2019
1 parent 6101675 commit ad179f6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/integration/commands/test_describe.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from click.testing import CliRunner

from esque.cli.commands import describe_topic


def test_smoke_test_describe_topic(cli_runner: CliRunner, topic: str):
result = cli_runner.invoke(describe_topic, [topic])

assert result.exit_code == 0
9 changes: 9 additions & 0 deletions tests/integration/commands/test_get.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from click.testing import CliRunner

from esque.cli.commands import get_topics


def test_smoke_test_get_topics(cli_runner: CliRunner):
result = cli_runner.invoke(get_topics)

assert result.exit_code == 0

0 comments on commit ad179f6

Please sign in to comment.