()
| 41 | |
| 42 | |
| 43 | def test_abc(): |
| 44 | foo = Foo() |
| 45 | assert isinstance(foo, RichRenderable) |
| 46 | assert isinstance(Text("hello"), RichRenderable) |
| 47 | assert isinstance(Panel("hello"), RichRenderable) |
| 48 | assert not isinstance(foo, str) |
| 49 | assert not isinstance("foo", RichRenderable) |
| 50 | assert not isinstance([], RichRenderable) |
| 51 | |
| 52 | |
| 53 | def test_cast_deep(): |