Coverage for tests / test_tutorial / test_printing / test_tutorial006.py: 100%

15 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-03-26 21:46 +0000

1import subprocess 1abcdefg

2import sys 1abcdefg

3 

4from typer.testing import CliRunner 1abcdefg

5 

6import docs_src.printing.tutorial006_py310 as mod 1abcdefg

7from tests.utils import normalize_rich_output 1abcdefg

8 

9app = mod.app 1abcdefg

10 

11runner = CliRunner() 1abcdefg

12 

13 

14def test_cli(): 1abcdefg

15 result = runner.invoke(app, ["everyone"], color=True) 1abcdefg

16 assert result.exit_code == 0 1abcdefg

17 

18 # Replace all Rich formatting with `*` characters 

19 normalized_output = normalize_rich_output(result.output) 1abcdefg

20 

21 assert "*Welcome here everyone*" in normalized_output 1abcdefg

22 # We don't check exact colors here, just that text has formatting 

23 

24 

25def test_script(): 1abcdefg

26 result = subprocess.run( 1abcdefg

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

28 capture_output=True, 

29 encoding="utf-8", 

30 ) 

31 assert "Usage" in result.stdout 1abcdefg