(self)
| 86 | self.assertEqual(m.index(chi, start, stop), index) |
| 87 | |
| 88 | def test_iter(self): |
| 89 | for tp in self._types: |
| 90 | b = tp(self._source) |
| 91 | m = self._view(b) |
| 92 | self.assertEqual(list(m), [m[i] for i in range(len(m))]) |
| 93 | |
| 94 | def test_count(self): |
| 95 | for tp in self._types: |
nothing calls this directly
no test coverage detected