(self)
| 172 | self.assertIsNone(l.last_option()) |
| 173 | |
| 174 | def test_init(self): |
| 175 | result = self.seq([1, 2, 3, 4]).map(lambda x: x).init() |
| 176 | expect = [1, 2, 3] |
| 177 | self.assertIteratorEqual(result, expect) |
| 178 | |
| 179 | def test_tail(self): |
| 180 | l = self.seq([1, 2, 3, 4]).map(lambda x: x) |
nothing calls this directly
no test coverage detected