()
| 27 | |
| 28 | |
| 29 | def test_gentoo_import(): |
| 30 | file = os.path.join(TEST_DIR, "glsa-201709-09.xml") |
| 31 | advisories = GentooImporter().process_file(file) |
| 32 | result = [adv.to_dict() for adv in advisories] |
| 33 | expected_file = os.path.join(TEST_DIR, "gentoo-expected.json") |
| 34 | util_tests.check_results_against_json(result, expected_file) |
nothing calls this directly
no test coverage detected