(self, start='contents', **options)
| 21 | class ParserTestCase(unittest.TestCase): |
| 22 | |
| 23 | def _make_parser(self, start='contents', **options): |
| 24 | ApacheConfigLexer = make_lexer(**options) |
| 25 | ApacheConfigParser = make_parser(**options) |
| 26 | return ApacheConfigParser(ApacheConfigLexer(), start=start) |
| 27 | |
| 28 | def testUnicodeSupport(self): |
| 29 | ApacheConfigLexer = make_lexer() |
no test coverage detected