()
| 11 | class TestRenderNote: |
| 12 | @staticmethod |
| 13 | def test_oneline() -> None: |
| 14 | note = Note("Note text") |
| 15 | assert render_note(note) == "Note {\n 'Note text'\n}" |
| 16 | |
| 17 | @staticmethod |
| 18 | def test_multiline() -> None: |
nothing calls this directly
no test coverage detected