Coverage for tests/test_tutorial/test_prompt/test_tutorial002.py: 100%
22 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
4import typer 1abcdefgh
5from typer.testing import CliRunner 1abcdefgh
7from docs_src.prompt import tutorial002 as mod 1abcdefgh
9runner = CliRunner() 1abcdefgh
11app = typer.Typer() 1abcdefgh
12app.command()(mod.main) 1abcdefgh
15def test_cli(): 1abcdefgh
16 result = runner.invoke(app, input="y\n") 1abcdefgh
17 assert result.exit_code == 0 1abcdefgh
18 assert "Are you sure you want to delete it? [y/N]:" in result.output 1abcdefgh
19 assert "Deleting it!" in result.output 1abcdefgh
22def test_no_confirm(): 1abcdefgh
23 result = runner.invoke(app, input="n\n") 1abcdefgh
24 assert result.exit_code == 1 1abcdefgh
25 assert "Are you sure you want to delete it? [y/N]:" in result.output 1abcdefgh
26 assert "Not deleting" in result.output 1abcdefgh
27 assert "Aborted" in result.output 1abcdefgh
30def test_script(): 1abcdefgh
31 result = subprocess.run( 1abcdefgh
32 [sys.executable, "-m", "coverage", "run", mod.__file__, "--help"],
33 capture_output=True,
34 encoding="utf-8",
35 )
36 assert "Usage" in result.stdout 1abcdefgh