Test -cl with a missing output directory.
(self)
| 1587 | self.exec(cmd) |
| 1588 | |
| 1589 | def test_cl_missing_output(self) -> None: |
| 1590 | ''' |
| 1591 | Test -cl with a missing output directory. |
| 1592 | ''' |
| 1593 | # Build an otherwise valid cmd with the test flaw |
| 1594 | cmd = [ |
| 1595 | self.binary, '-cl', |
| 1596 | self.get_ref_image_path('LDR', 'input', 'A'), |
| 1597 | './DoesNotExist/test.astc', |
| 1598 | '4x4', '-fast'] |
| 1599 | |
| 1600 | self.exec(cmd) |
| 1601 | |
| 1602 | def test_cl_unknown_output(self) -> None: |
| 1603 | ''' |
nothing calls this directly
no test coverage detected