(self, string, expected)
| 3397 | |
| 3398 | class QuotedTokenParserTest(fixtures.TestBase): |
| 3399 | def _test(self, string, expected): |
| 3400 | eq_(langhelpers.quoted_token_parser(string), expected) |
| 3401 | |
| 3402 | def test_single(self): |
| 3403 | self._test("name", ["name"]) |
no test coverage detected