Coverage for tests / test_tutorial / test_launch / test_tutorial001.py: 100%
15 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-03-26 21:46 +0000
« prev ^ index » next coverage.py v7.13.1, created at 2026-03-26 21:46 +0000
1import subprocess 1abcdefg
2import sys 1abcdefg
3from unittest.mock import patch 1abcdefg
5from typer.testing import CliRunner 1abcdefg
7from docs_src.launch import tutorial001_py310 as mod 1abcdefg
9runner = CliRunner() 1abcdefg
12def test_cli(): 1abcdefg
13 with patch("typer.launch") as launch_mock: 1abcdefg
14 result = runner.invoke(mod.app) 1abcdefg
16 assert result.exit_code == 0 1abcdefg
17 assert result.output.strip() == "Opening Typer's docs" 1abcdefg
18 launch_mock.assert_called_once_with("https://typer.tiangolo.com") 1abcdefg
21def test_script(): 1abcdefg
22 result = subprocess.run( 1abcdefg
23 [sys.executable, "-m", "coverage", "run", mod.__file__, "--help"],
24 capture_output=True,
25 encoding="utf-8",
26 )
27 assert "Usage" in result.stdout 1abcdefg