(component_class)
| 87 | |
| 88 | |
| 89 | def test_repr_nested_arguments(component_class): |
| 90 | c1 = component_class(id="1") |
| 91 | c2 = component_class(id="2", children=c1) |
| 92 | c3 = component_class(children=c2) |
| 93 | assert repr(c3) == "Table(Table(children=Table(id='1'), id='2'))" |
| 94 | |
| 95 | |
| 96 | def test_repr_with_wildcards(component_class): |
nothing calls this directly
no test coverage detected
searching dependent graphs…