(self)
| 203 | self.assertEqual(rf[0].on_update, 'no action') |
| 204 | |
| 205 | def test_note_definition(self) -> None: |
| 206 | results = PyDBML.parse_file(TEST_DOCS_PATH / 'note_definition.dbml') |
| 207 | self.assertEqual(len(results.tables), 1) |
| 208 | users = results['public.users'] |
| 209 | self.assertEqual(users.note.text, 'This is a note of this table') |
| 210 | |
| 211 | def test_project_notes(self) -> None: |
| 212 | results = PyDBML.parse_file(TEST_DOCS_PATH / 'project_notes.dbml') |
nothing calls this directly
no test coverage detected