(self)
| 24 | assert k.mask_code_spans("") == "" |
| 25 | |
| 26 | def test_no_code(self): |
| 27 | assert k.mask_code_spans("just text") == "just text" |
| 28 | |
| 29 | def test_inline_code_preserves_length(self): |
| 30 | text = "before `code` after" |
nothing calls this directly
no outgoing calls
no test coverage detected