(self)
| 470 | assert len(summary) < 65 |
| 471 | |
| 472 | def test_text_diff(self) -> None: |
| 473 | assert callequal("spam", "eggs") == [ |
| 474 | "'spam' == 'eggs'", |
| 475 | "", |
| 476 | "- eggs", |
| 477 | "+ spam", |
| 478 | ] |
| 479 | |
| 480 | def test_text_diff_ndiff_style(self) -> None: |
| 481 | assert list( |
nothing calls this directly
no test coverage detected