Coverage for tests/test_tutorial/test_subcommands/test_name_help/test_tutorial005.py: 100%
23 statements
« prev ^ index » next coverage.py v7.6.1, created at 2024-09-09 18:26 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2024-09-09 18:26 +0000
1import subprocess 1abcdefgh
2import sys 1abcdefgh
4from typer.testing import CliRunner 1abcdefgh
6from docs_src.subcommands.name_help import tutorial005 as mod 1abcdefgh
8runner = CliRunner() 1abcdefgh
10app = mod.app 1abcdefgh
13def test_help(): 1abcdefgh
14 result = runner.invoke(app, ["--help"]) 1abcdefgh
15 assert result.exit_code == 0 1abcdefgh
16 assert "Commands" in result.output 1abcdefgh
17 assert "new-users" in result.output 1abcdefgh
18 assert "I have the highland! Create some users." in result.output 1abcdefgh
21def test_command_help(): 1abcdefgh
22 result = runner.invoke(app, ["new-users", "--help"]) 1abcdefgh
23 assert result.exit_code == 0 1abcdefgh
24 assert "I have the highland! Create some users." in result.output 1abcdefgh
27def test_command(): 1abcdefgh
28 result = runner.invoke(app, ["new-users", "create", "Camila"]) 1abcdefgh
29 assert result.exit_code == 0 1abcdefgh
30 assert "Creating user: Camila" in result.output 1abcdefgh
33def test_script(): 1abcdefgh
34 result = subprocess.run( 1abcdefgh
35 [sys.executable, "-m", "coverage", "run", mod.__file__, "--help"],
36 capture_output=True,
37 encoding="utf-8",
38 )
39 assert "Usage" in result.stdout 1abcdefgh