(self)
| 140 | assert self.data.next() is None |
| 141 | |
| 142 | def test_lists(self): |
| 143 | self.decode_data_file("lists") |
| 144 | self.assert_next(Data.LIST, [32, "foo", True]) |
| 145 | self.assert_next(Data.LIST, []) |
| 146 | assert self.data.next() is None |
| 147 | |
| 148 | def test_maps(self): |
| 149 | self.decode_data_file("maps") |
nothing calls this directly
no test coverage detected