Coverage for tests/test_tutorial/test_parameter_types/test_datetime/test_tutorial002_an.py: 100%

19 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.datetime import tutorial002_an as mod 1abcdefgh

8 

9runner = CliRunner() 1abcdefgh

10 

11app = typer.Typer() 1abcdefgh

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

13 

14 

15def test_main(): 1abcdefgh

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

17 assert result.exit_code == 0 1abcdefgh

18 assert "Launch will be at: 1969-10-29 00:00:00" in result.output 1abcdefgh

19 

20 

21def test_usa_weird_date_format(): 1abcdefgh

22 result = runner.invoke(app, ["10/29/1969"]) 1abcdefgh

23 assert result.exit_code == 0 1abcdefgh

24 assert "Launch will be at: 1969-10-29 00:00:00" in result.output 1abcdefgh

25 

26 

27def test_script(): 1abcdefgh

28 result = subprocess.run( 1abcdefgh

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

30 capture_output=True, 

31 encoding="utf-8", 

32 ) 

33 assert "Usage" in result.stdout 1abcdefgh