add test
This commit is contained in:
parent
c146458876
commit
acc764afcf
1 changed files with 10 additions and 0 deletions
10
tests/tests_integration/test_xe_healthcheck.py
Normal file
10
tests/tests_integration/test_xe_healthcheck.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
from click.testing import CliRunner
|
||||
|
||||
from xexe.cli import xe_healthcheck
|
||||
|
||||
|
||||
def test_xe_healthcheck():
|
||||
runner = CliRunner()
|
||||
result = runner.invoke(xe_healthcheck)
|
||||
assert result.exit_code == 0
|
||||
assert "Something that should clearly appear" in result.output
|
||||
Loading…
Add table
Add a link
Reference in a new issue