()
| 8 | |
| 9 | |
| 10 | def test_render_single_node(): |
| 11 | tree = Tree("foo") |
| 12 | console = Console(color_system=None, width=20) |
| 13 | console.begin_capture() |
| 14 | console.print(tree) |
| 15 | assert console.end_capture() == "foo\n" |
| 16 | |
| 17 | |
| 18 | def test_render_single_branch(): |
nothing calls this directly
no test coverage detected