()
| 162 | |
| 163 | |
| 164 | def test_gen_view_simple(): |
| 165 | view = gen_view_simple() |
| 166 | assert_view(view, 0, 2) |
| 167 | # TODO - replace accessors here with glom / boltons / toolz |
| 168 | assert len(view.blocks) == 2 |
| 169 | assert isinstance(view.blocks[1], dp.Text) |
| 170 | assert view.blocks[0].name == "test-id-1" |
| 171 | |
| 172 | |
| 173 | def test_gen_view_nested_mixed(): |
nothing calls this directly
no test coverage detected