Coverage for tests / test_tutorial / test_terminating / test_tutorial002.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.terminating import tutorial002_py39 as mod 1abcdefgh

7 

8runner = CliRunner() 1abcdefgh

9app = mod.app 1abcdefgh

10 

11 

12def test_cli(): 1abcdefgh

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

14 assert result.exit_code == 0 1abcdefgh

15 assert "New user created: Camila" in result.output 1abcdefgh

16 

17 

18def test_root(): 1abcdefgh

19 result = runner.invoke(app, ["root"]) 1abcdefgh

20 assert result.exit_code == 1 1abcdefgh

21 assert "The root user is reserved" in result.output 1abcdefgh

22 

23 

24def test_script(): 1abcdefgh

25 result = subprocess.run( 1abcdefgh

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

27 capture_output=True, 

28 encoding="utf-8", 

29 ) 

30 assert "Usage" in result.stdout 1abcdefgh