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

15 statements  

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

1import subprocess 1abcdefgh

2import sys 1abcdefgh

3from unittest.mock import patch 1abcdefgh

4 

5from typer.testing import CliRunner 1abcdefgh

6 

7from docs_src.launch import tutorial001_py39 as mod 1abcdefgh

8 

9runner = CliRunner() 1abcdefgh

10 

11 

12def test_cli(): 1abcdefgh

13 with patch("typer.launch") as launch_mock: 1abcdefgh

14 result = runner.invoke(mod.app) 1abcdefgh

15 

16 assert result.exit_code == 0 1abcdefgh

17 assert result.output.strip() == "Opening Typer's docs" 1abcdefgh

18 launch_mock.assert_called_once_with("https://typer.tiangolo.com") 1abcdefgh

19 

20 

21def test_script(): 1abcdefgh

22 result = subprocess.run( 1abcdefgh

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

24 capture_output=True, 

25 encoding="utf-8", 

26 ) 

27 assert "Usage" in result.stdout 1abcdefgh