Coverage for tests/test_tutorial/test_commands/test_one_or_multiple/test_tutorial002.py: 100%

20 statements  

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

1import subprocess 1abcdefgh

2import sys 1abcdefgh

3 

4from typer.testing import CliRunner 1abcdefgh

5 

6from docs_src.commands.one_or_multiple import tutorial002 as mod 1abcdefgh

7 

8app = mod.app 1abcdefgh

9 

10runner = CliRunner() 1abcdefgh

11 

12 

13def test_help(): 1abcdefgh

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

15 assert result.exit_code == 0 1abcdefgh

16 assert "Creates a single user Hiro Hamada." in result.output 1abcdefgh

17 assert "In the next version it will create 5 users more." in result.output 1abcdefgh

18 assert "Commands" in result.output 1abcdefgh

19 assert "create" in result.output 1abcdefgh

20 

21 

22def test_command(): 1abcdefgh

23 result = runner.invoke(app, ["create"]) 1abcdefgh

24 assert result.exit_code == 0 1abcdefgh

25 assert "Creating user: Hiro Hamada" in result.output 1abcdefgh

26 

27 

28def test_script(): 1abcdefgh

29 result = subprocess.run( 1abcdefgh

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

31 capture_output=True, 

32 encoding="utf-8", 

33 ) 

34 assert "Usage" in result.stdout 1abcdefgh