()
| 34 | |
| 35 | |
| 36 | def test_rich_cast_container(): |
| 37 | foo = Foo() |
| 38 | console = Console(file=io.StringIO(), legacy_windows=False) |
| 39 | console.print(Panel.fit(foo, padding=0)) |
| 40 | assert console.file.getvalue() == "╭───╮\n│Foo│\n╰───╯\n" |
| 41 | |
| 42 | |
| 43 | def test_abc(): |