Coverage for tests / test_tutorial / test_prompt / test_tutorial003.py: 100%

19 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-02-09 12:36 +0000

1import subprocess 1abcdefgh

2import sys 1abcdefgh

3 

4from typer.testing import CliRunner 1abcdefgh

5 

6from docs_src.prompt import tutorial003_py39 as mod 1abcdefgh

7 

8runner = CliRunner() 1abcdefgh

9app = mod.app 1abcdefgh

10 

11 

12def test_cli(): 1abcdefgh

13 result = runner.invoke(app, input="y\n") 1abcdefgh

14 assert result.exit_code == 0 1abcdefgh

15 assert "Are you sure you want to delete it? [y/N]:" in result.output 1abcdefgh

16 assert "Deleting it!" in result.output 1abcdefgh

17 

18 

19def test_no_confirm(): 1abcdefgh

20 result = runner.invoke(app, input="n\n") 1abcdefgh

21 assert result.exit_code == 1 1abcdefgh

22 assert "Are you sure you want to delete it? [y/N]:" in result.output 1abcdefgh

23 assert "Aborted" in result.output 1abcdefgh

24 

25 

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