(self)
| 274 | make_parser(iter(['module'])) |
| 275 | |
| 276 | def test_make_parser4(self): |
| 277 | # Testing that make_parser can handle empty iterables. |
| 278 | make_parser([]) |
| 279 | make_parser(tuple()) |
| 280 | make_parser(set()) |
| 281 | make_parser(frozenset()) |
| 282 | make_parser({}) |
| 283 | make_parser(iter([])) |
| 284 | |
| 285 | def test_make_parser5(self): |
| 286 | # Testing that make_parser can handle iterables with more than |
nothing calls this directly
no test coverage detected