(self)
| 342 | assert len(summary) < 65 |
| 343 | |
| 344 | def test_text_diff(self) -> None: |
| 345 | assert callequal("spam", "eggs") == [ |
| 346 | "'spam' == 'eggs'", |
| 347 | "- eggs", |
| 348 | "+ spam", |
| 349 | ] |
| 350 | |
| 351 | def test_text_skipping(self) -> None: |
| 352 | lines = callequal("a" * 50 + "spam", "a" * 50 + "eggs") |
nothing calls this directly
no test coverage detected