(self)
| 128 | |
| 129 | class TestPyDBMLParser(TestCase): |
| 130 | def test_edge(self) -> None: |
| 131 | p = PyDBMLParser('') |
| 132 | with self.assertRaises(RuntimeError): |
| 133 | p.locate_table('myschema', 'test') |
| 134 | with self.assertRaises(RuntimeError): |
| 135 | p.parse_blueprint(1, 1, [1]) |
| 136 | |
| 137 | |
| 138 | class TestNotesIdempotent(TestCase): |
nothing calls this directly
no test coverage detected