()
| 47 | |
| 48 | |
| 49 | def test_layout_repr(): |
| 50 | @reactpy.component |
| 51 | def MyComponent(): ... |
| 52 | |
| 53 | my_component = MyComponent() |
| 54 | layout = reactpy.Layout(my_component) |
| 55 | assert str(layout) == f"Layout(MyComponent({id(my_component):02x}))" |
| 56 | |
| 57 | |
| 58 | def test_layout_expects_abstract_component(): |
nothing calls this directly
no test coverage detected