()
| 369 | |
| 370 | |
| 371 | def test_end(): |
| 372 | console = Console(width=20, file=StringIO()) |
| 373 | text = Group(Text.from_markup("foo", end=" "), Text.from_markup("bar")) |
| 374 | console.print(text) |
| 375 | assert console.file.getvalue() == "foo bar\n" |
| 376 | |
| 377 | |
| 378 | def test_split(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…