()
| 16 | |
| 17 | @staticmethod |
| 18 | def test_multiline() -> None: |
| 19 | note = Note("Note text\nwith multiple lines") |
| 20 | assert ( |
| 21 | render_note(note) |
| 22 | == "Note {\n '''\n Note text\n with multiple lines'''\n}" |
| 23 | ) |
nothing calls this directly
no test coverage detected