()
| 14 | |
| 15 | |
| 16 | def test_create_job() -> None: |
| 17 | args_1 =\ |
| 18 | { |
| 19 | 'source_path': 'source-1.jpg', |
| 20 | 'target_path': 'target-1.jpg', |
| 21 | 'output_path': 'output-1.jpg' |
| 22 | } |
| 23 | |
| 24 | assert create_job('job-test-create-job') is True |
| 25 | assert create_job('job-test-create-job') is False |
| 26 | |
| 27 | add_step('job-test-submit-job', args_1) |
| 28 | submit_job('job-test-create-job') |
| 29 | |
| 30 | assert create_job('job-test-create-job') is False |
| 31 | |
| 32 | |
| 33 | def test_submit_job() -> None: |
nothing calls this directly
no test coverage detected