(component_class)
| 80 | |
| 81 | |
| 82 | def test_repr_multiple_arguments(component_class): |
| 83 | # Note how the order in which keyword arguments are supplied is |
| 84 | # not always equal to the order in the repr of the component |
| 85 | c = component_class(id="my id", optionalArray=[1, 2, 3]) |
| 86 | assert repr(c) == "Table(id='my id', optionalArray=[1, 2, 3])" |
| 87 | |
| 88 | |
| 89 | def test_repr_nested_arguments(component_class): |
nothing calls this directly
no test coverage detected
searching dependent graphs…