()
| 316 | |
| 317 | |
| 318 | async def test_render_str() -> None: |
| 319 | widget = Label() |
| 320 | assert widget.render_str("foo") == Content("foo") |
| 321 | assert widget.render_str("[b]foo") == Content.from_markup("[b]foo") |
| 322 | # Text objects are passed unchanged |
| 323 | content = Content("bar") |
| 324 | assert widget.render_str(content) is content |
| 325 | |
| 326 | |
| 327 | async def test_compose_order() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…