()
| 35 | |
| 36 | |
| 37 | def test_constructor(): |
| 38 | content = Content("Hello, World") |
| 39 | assert content |
| 40 | assert len(content) == 12 |
| 41 | assert content.cell_length == 12 |
| 42 | assert content.plain == "Hello, World" |
| 43 | repr(content) |
| 44 | |
| 45 | |
| 46 | def test_bool(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…