()
| 28 | |
| 29 | |
| 30 | def test_lines_rich_console(): |
| 31 | console = Console() |
| 32 | lines = Lines([Text("foo")]) |
| 33 | |
| 34 | result = list(lines.__rich_console__(console, console.options)) |
| 35 | assert result == [Text("foo")] |
| 36 | |
| 37 | |
| 38 | def test_lines_justify(): |
nothing calls this directly
no test coverage detected