def test_non_working_reporter_does_not_report(self) -> None: self.assertFileDoesNotExist(self.approved_file_path) reporter = GenericDiffReporter(create_config(["Custom", "NotReal"])) success = reporter.report(self.received_file_path, self.approved_file_path) self.assertFalse(success)
def test_non_working_reporter_does_not_report(self): self.assertFileDoesNotExist(self.approved_file_path) reporter = GenericDiffReporter(('Custom', 'NotReal')) success = reporter.report(self.received_file_path, self.approved_file_path) self.assertFalse(success)