Coverage for tests/test_tutorial/test_parameter_types/test_bool/test_tutorial003_an.py: 100%

26 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.parameter_types.bool import tutorial003_an as mod 1abcdefgh

8 

9runner = CliRunner() 1abcdefgh

10 

11app = typer.Typer() 1abcdefgh

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

13 

14 

15def test_help(): 1abcdefgh

16 result = runner.invoke(app, ["--help"]) 1abcdefgh

17 assert result.exit_code == 0 1abcdefgh

18 assert "-f" in result.output 1abcdefgh

19 assert "--force" in result.output 1abcdefgh

20 assert "-F" in result.output 1abcdefgh

21 assert "--no-force" in result.output 1abcdefgh

22 

23 

24def test_force(): 1abcdefgh

25 result = runner.invoke(app, ["-f"]) 1abcdefgh

26 assert result.exit_code == 0 1abcdefgh

27 assert "Forcing operation" in result.output 1abcdefgh

28 

29 

30def test_no_force(): 1abcdefgh

31 result = runner.invoke(app, ["-F"]) 1abcdefgh

32 assert result.exit_code == 0 1abcdefgh

33 assert "Not forcing" in result.output 1abcdefgh

34 

35 

36def test_script(): 1abcdefgh

37 result = subprocess.run( 1abcdefgh

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

39 capture_output=True, 

40 encoding="utf-8", 

41 ) 

42 assert "Usage" in result.stdout 1abcdefgh