()
| 362 | |
| 363 | |
| 364 | def test_append_text(): |
| 365 | text = Text("foo") |
| 366 | text.append_text(Text("bar", style="bold")) |
| 367 | assert str(text) == "foobar" |
| 368 | assert text._spans == [Span(3, 6, "bold")] |
| 369 | |
| 370 | |
| 371 | def test_end(): |
nothing calls this directly
no test coverage detected