We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 349db07 commit b72696cCopy full SHA for b72696c
tests/test_cli.py
@@ -8,8 +8,6 @@
8
from domaintools.cli import dt_cli
9
from domaintools._version import current
10
11
-from tests.settings import vcr
12
-
13
runner = CliRunner()
14
15
@@ -24,7 +22,7 @@ def test_valid_command():
24
22
user = os.environ.get("TEST_USER", "test")
25
23
key = os.environ.get("TEST_KEY", "key")
26
result = runner.invoke(dt_cli, ["account_information", "--help"])
27
- assert "About to execute command: `account_information`" in result.stdout
+ assert "Usage: main account_information" in result.stdout
28
29
30
def test_invalid_command():
0 commit comments