(self)
| 50 | self.assertEqual(f"note: 'one line\\'d note'", note_option_to_dbml(note)) |
| 51 | |
| 52 | def test_multiline(self) -> None: |
| 53 | note = Note("line1\nline2\nline3") |
| 54 | expected = "note: '''line1\nline2\nline3'''" |
| 55 | self.assertEqual(expected, note_option_to_dbml(note)) |
| 56 | |
| 57 | def test_multiline_with_quotes(self) -> None: |
| 58 | note = Note("line1\n'''line2\nline3") |
nothing calls this directly
no test coverage detected