(self)
| 38 | assert results["deep-child"] == 2 |
| 39 | |
| 40 | def test_empty_layout(self): |
| 41 | results = list(traverse(html.Div())) |
| 42 | assert len(results) == 1 # just the Div itself |
| 43 | |
| 44 | |
| 45 | class TestFindComponent: |
nothing calls this directly
no test coverage detected