()
| 4 | |
| 5 | |
| 6 | def test_prepare_text_for_dbml() -> None: |
| 7 | note = Note("""Three quotes: ''', one quote: '.""") |
| 8 | assert prepare_text_for_dbml(note.text) == "Three quotes: \\''', one quote: \\'." |
| 9 | |
| 10 | |
| 11 | class TestRenderNote: |
nothing calls this directly
no test coverage detected