Test -dl with a missing output directory.
(self)
| 1821 | self.exec_with_omit(cmd, 2) |
| 1822 | |
| 1823 | def test_dl_missing_output(self) -> None: |
| 1824 | ''' |
| 1825 | Test -dl with a missing output directory. |
| 1826 | ''' |
| 1827 | # Build an otherwise valid cmd with the test flaw |
| 1828 | cmd = [ |
| 1829 | self.binary, '-dl', |
| 1830 | self.get_ref_image_path('LDR', 'comp', 'A'), |
| 1831 | './DoesNotExist/test.png'] |
| 1832 | |
| 1833 | self.exec(cmd) |
| 1834 | |
| 1835 | def test_cl_a_missing_args(self) -> None: |
| 1836 | ''' |
nothing calls this directly
no test coverage detected