(component_class)
| 94 | |
| 95 | |
| 96 | def test_repr_with_wildcards(component_class): |
| 97 | c = component_class(id="1", **{"data-one": "one", "aria-two": "two"}) |
| 98 | data_first = "Table(id='1', data-one='one', aria-two='two')" |
| 99 | aria_first = "Table(id='1', aria-two='two', data-one='one')" |
| 100 | repr_string = repr(c) |
| 101 | |
| 102 | assert repr_string == data_first or repr_string == aria_first |
| 103 | |
| 104 | |
| 105 | def test_docstring(component_class): |
nothing calls this directly
no test coverage detected
searching dependent graphs…