(self)
| 25 | |
| 26 | class SpecLoaderTest(unittest.TestCase): |
| 27 | def test_spec_loader(self): |
| 28 | self.assertTrue( |
| 29 | isinstance(spec_loader.load_spec("st2common", "openapi.yaml.j2"), dict) |
| 30 | ) |
| 31 | |
| 32 | def test_bad_spec_duplicate_keys(self): |
| 33 | self.assertRaisesRegex( |
nothing calls this directly
no outgoing calls
no test coverage detected