Test -tl with a missing output directory.
(self)
| 1738 | self.exec(cmd) |
| 1739 | |
| 1740 | def test_tl_missing_output(self) -> None: |
| 1741 | ''' |
| 1742 | Test -tl with a missing output directory. |
| 1743 | ''' |
| 1744 | # Build an otherwise valid cmd with the test flaw |
| 1745 | cmd = [ |
| 1746 | self.binary, '-tl', |
| 1747 | self.get_ref_image_path('LDR', 'input', 'A'), |
| 1748 | './DoesNotExist/test.png', |
| 1749 | '4x4', '-fast'] |
| 1750 | |
| 1751 | self.exec(cmd) |
| 1752 | |
| 1753 | def test_tl_bad_block_size(self) -> None: |
| 1754 | ''' |
nothing calls this directly
no test coverage detected