()
| 34 | |
| 35 | |
| 36 | def load_oval_data(): |
| 37 | etrees_of_oval = {} |
| 38 | for f in os.listdir(TEST_DATA): |
| 39 | if f.endswith("oval_data.xml"): |
| 40 | path = os.path.join(TEST_DATA, f) |
| 41 | provider = f.split("_")[0] |
| 42 | etrees_of_oval[provider] = ET.parse(path) |
| 43 | return etrees_of_oval |
| 44 | |
| 45 | |
| 46 | class MockOvalImporter(OvalImporter): |
no test coverage detected