(self)
| 181 | assert base_list == list_items |
| 182 | |
| 183 | def test___iter__(self): |
| 184 | values = [True, False, True, False] |
| 185 | base_list = BaseList(values, instance=None, name="my_name") |
| 186 | assert values == list(base_list) |
| 187 | |
| 188 | def test___iter___allow_modification_while_iterating_withou_error(self): |
| 189 | # regular list allows for this, thus this subclass must comply to that |