(self)
| 48 | |
| 49 | class TestLoadExpress(NewFile): |
| 50 | def test_run(self): |
| 51 | cwd = os.path.dirname(os.path.realpath(__file__)) |
| 52 | schema_path = os.path.join(cwd, "..", "files", "test.exp") |
| 53 | schema = subject.load_express(schema_path) |
| 54 | assert schema.name() == "IFCROGUE" |
| 55 | os.remove(schema_path + ".cache.dat") |
| 56 | |
| 57 | |
| 58 | class TestPurgeHdf5Cache(NewFile): |
nothing calls this directly
no test coverage detected