()
| 154 | ################################################################################ |
| 155 | # View Tests |
| 156 | def test_gen_view_single(): |
| 157 | # view with single block |
| 158 | view = dp.Blocks("test block") |
| 159 | assert_view(view, 0) |
| 160 | assert len(view.blocks) == 1 |
| 161 | assert isinstance(view.blocks[0], dp.Text) |
| 162 | |
| 163 | |
| 164 | def test_gen_view_simple(): |
nothing calls this directly
no test coverage detected