(self, tw)
| 107 | assert lines[0] == msg + "\n" |
| 108 | |
| 109 | def test_sep_no_title(self, tw) -> None: |
| 110 | tw.sep("-", fullwidth=60) |
| 111 | lines = tw.getlines() |
| 112 | assert len(lines) == 1 |
| 113 | assert lines[0] == "-" * (60 - win32) + "\n" |
| 114 | |
| 115 | def test_sep_with_title(self, tw) -> None: |
| 116 | tw.sep("-", "hello", fullwidth=60) |