Coverage for tests / test_tutorial / test_typer_app / test_tutorial001.py: 100%

17 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.typer_app import tutorial001_py39 as mod 1abcdefgh

7 

8app = mod.app 1abcdefgh

9 

10runner = CliRunner() 1abcdefgh

11 

12 

13def test_no_arg(): 1abcdefgh

14 result = runner.invoke(app) 1abcdefgh

15 assert result.exit_code != 0 1abcdefgh

16 assert "Missing argument 'NAME'." in result.output 1abcdefgh

17 

18 

19def test_arg(): 1abcdefgh

20 result = runner.invoke(app, ["Camila"]) 1abcdefgh

21 assert result.exit_code == 0 1abcdefgh

22 assert "Hello Camila" in result.output 1abcdefgh

23 

24 

25def test_script(): 1abcdefgh

26 result = subprocess.run( 1abcdefgh

27 [sys.executable, "-m", "coverage", "run", mod.__file__, "--help"], 

28 capture_output=True, 

29 encoding="utf-8", 

30 ) 

31 assert "Usage" in result.stdout 1abcdefgh