(self)
| 269 | self.assert_type(result) |
| 270 | |
| 271 | def test_select(self): |
| 272 | f = lambda x: x * 2 |
| 273 | l = [1, 2, 0, 5] |
| 274 | expect = [2, 4, 0, 10] |
| 275 | result = self.seq(l).select(f) |
| 276 | self.assertIteratorEqual(expect, result) |
| 277 | self.assert_type(result) |
| 278 | |
| 279 | def test_starmap(self): |
| 280 | f = lambda x, y: x * y |
nothing calls this directly
no test coverage detected