(self)
| 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") |
| 59 | expected = "note: '''line1\n\\'''line2\nline3'''" |
| 60 | self.assertEqual(expected, note_option_to_dbml(note)) |
| 61 | |
| 62 | |
| 63 | class TestIndent(TestCase): |
nothing calls this directly
no test coverage detected