A test component function. Returns: A test component function.
()
| 205 | |
| 206 | @pytest.fixture |
| 207 | def my_component(): |
| 208 | """A test component function. |
| 209 | |
| 210 | Returns: |
| 211 | A test component function. |
| 212 | """ |
| 213 | |
| 214 | def my_component(prop1: Var[str], prop2: Var[int]): |
| 215 | return Box.create(prop1, prop2) |
| 216 | |
| 217 | return my_component |
| 218 | |
| 219 | |
| 220 | def test_set_style_attrs(component1): |
no test coverage detected