(self, string, expected)
| 3492 | |
| 3493 | class QuotedTokenParserTest(fixtures.TestBase): |
| 3494 | def _test(self, string, expected): |
| 3495 | eq_(langhelpers.quoted_token_parser(string), expected) |
| 3496 | |
| 3497 | def test_single(self): |
| 3498 | self._test("name", ["name"]) |
no test coverage detected