(self, tw)
| 98 | assert lines[0] == "hello\n" |
| 99 | |
| 100 | def test_line_unicode(self, tw) -> None: |
| 101 | msg = "b\u00f6y" |
| 102 | tw.line(msg) |
| 103 | lines = tw.getlines() |
| 104 | assert lines[0] == msg + "\n" |
| 105 | |
| 106 | def test_sep_no_title(self, tw) -> None: |
| 107 | tw.sep("-", fullwidth=60) |