()
| 47 | |
| 48 | |
| 49 | def test_default_impls(): |
| 50 | t = ExampleContentview() |
| 51 | assert t.name == "Example" |
| 52 | assert t.syntax_highlight == "none" |
| 53 | assert t.render_priority(b"data", Metadata()) == 0 |
| 54 | assert t < raw |
| 55 | assert not raw < t |
| 56 | |
| 57 | |
| 58 | class TestRustInterop: |
nothing calls this directly
no test coverage detected
searching dependent graphs…