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

14 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-09-09 18:26 +0000

1import subprocess 1abcdefgh

2import sys 1abcdefgh

3 

4import typer 1abcdefgh

5from typer.testing import CliRunner 1abcdefgh

6 

7from docs_src.first_steps import tutorial001 as mod 1abcdefgh

8 

9runner = CliRunner() 1abcdefgh

10 

11 

12def test_cli(): 1abcdefgh

13 app = typer.Typer() 1abcdefgh

14 app.command()(mod.main) 1abcdefgh

15 result = runner.invoke(app, []) 1abcdefgh

16 assert result.output == "Hello World\n" 1abcdefgh

17 

18 

19def test_script(): 1abcdefgh

20 result = subprocess.run( 1abcdefgh

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

22 capture_output=True, 

23 encoding="utf-8", 

24 ) 

25 assert "Usage" in result.stdout 1abcdefgh