(self)
| 282 | make_parser(iter(['module'])) |
| 283 | |
| 284 | def test_make_parser4(self): |
| 285 | # Testing that make_parser can handle empty iterables. |
| 286 | make_parser([]) |
| 287 | make_parser(tuple()) |
| 288 | make_parser(set()) |
| 289 | make_parser(frozenset()) |
| 290 | make_parser({}) |
| 291 | make_parser(iter([])) |
| 292 | |
| 293 | def test_make_parser5(self): |
| 294 | # Testing that make_parser can handle iterables with more than |
nothing calls this directly
no test coverage detected