Coverage for tests / test_tutorial / test_multiple_values / test_multiple_options / test_tutorial002.py: 100%

27 statements  

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

1import importlib 1abcdefgh

2import subprocess 1abcdefgh

3import sys 1abcdefgh

4from types import ModuleType 1abcdefgh

5 

6import pytest 1abcdefgh

7from typer.testing import CliRunner 1abcdefgh

8 

9runner = CliRunner() 1abcdefgh

10 

11 

12@pytest.fixture( 1abcdefgh

13 name="mod", 

14 params=[ 

15 pytest.param("tutorial002_py39"), 

16 pytest.param("tutorial002_an_py39"), 

17 ], 

18) 

19def get_mod(request: pytest.FixtureRequest) -> ModuleType: 1abcdefgh

20 module_name = f"docs_src.multiple_values.multiple_options.{request.param}" 1abcdefgh

21 mod = importlib.import_module(module_name) 1abcdefgh

22 return mod 1abcdefgh

23 

24 

25def test_main(mod: ModuleType): 1abcdefgh

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

27 assert result.exit_code == 0 1abcdefgh

28 assert "The sum is 0" in result.output 1abcdefgh

29 

30 

31def test_1_number(mod: ModuleType): 1abcdefgh

32 result = runner.invoke(mod.app, ["--number", "2"]) 1abcdefgh

33 assert result.exit_code == 0 1abcdefgh

34 assert "The sum is 2.0" in result.output 1abcdefgh

35 

36 

37def test_2_number(mod: ModuleType): 1abcdefgh

38 result = runner.invoke( 1abcdefgh

39 mod.app, ["--number", "2", "--number", "3", "--number", "4.5"] 

40 ) 

41 assert result.exit_code == 0 1abcdefgh

42 assert "The sum is 9.5" in result.output 1abcdefgh

43 

44 

45def test_script(mod: ModuleType): 1abcdefgh

46 result = subprocess.run( 1abcdefgh

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

48 capture_output=True, 

49 encoding="utf-8", 

50 ) 

51 assert "Usage" in result.stdout 1abcdefgh