Coverage for tests/test_tutorial/test_commands/test_help/test_tutorial008.py: 100%
17 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.commands.help import tutorial008 as mod 1abcdefgh
8app = mod.app 1abcdefgh
10runner = CliRunner() 1abcdefgh
13def test_main_help(): 1abcdefgh
14 result = runner.invoke(app, ["--help"]) 1abcdefgh
15 assert result.exit_code == 0 1abcdefgh
16 assert "Create a new user. ✨" in result.output 1abcdefgh
17 assert "Made with ❤ in Venus" in result.output 1abcdefgh
20def test_call(): 1abcdefgh
21 # Mainly for coverage
22 result = runner.invoke(app, ["Morty"]) 1abcdefgh
23 assert result.exit_code == 0 1abcdefgh
26def test_script(): 1abcdefgh
27 result = subprocess.run( 1abcdefgh
28 [sys.executable, "-m", "coverage", "run", mod.__file__, "--help"],
29 capture_output=True,
30 encoding="utf-8",
31 )
32 assert "Usage" in result.stdout 1abcdefgh