Test that the pygettext output exactly matches snapshots.
(self)
| 389 | self.assertEqual(msgids, ['']) |
| 390 | |
| 391 | def test_pygettext_output(self): |
| 392 | """Test that the pygettext output exactly matches snapshots.""" |
| 393 | for input_file, output_file, output in extract_from_snapshots(): |
| 394 | with self.subTest(input_file=input_file): |
| 395 | expected = output_file.read_text(encoding='utf-8') |
| 396 | self.assert_POT_equal(expected, output) |
| 397 | |
| 398 | def test_files_list(self): |
| 399 | """Make sure the directories are inspected for source files |
nothing calls this directly
no test coverage detected