summaryrefslogtreecommitdiff
path: root/tests/test_regexlexer.py
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2009-09-15 11:59:05 +0200
committergbrandl <devnull@localhost>2009-09-15 11:59:05 +0200
commit78409982f5db8b2ea40a31124caa394ac2996f70 (patch)
treee91a9bb738f0d6528f56b7b00875f6472be14a39 /tests/test_regexlexer.py
parentee3c7de8ba3c20401ae223a98413e46ac0db928d (diff)
downloadpygments-78409982f5db8b2ea40a31124caa394ac2996f70.tar.gz
Consistency fixes in the test suite.
Diffstat (limited to 'tests/test_regexlexer.py')
-rw-r--r--tests/test_regexlexer.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_regexlexer.py b/tests/test_regexlexer.py
index a29bef63..59284599 100644
--- a/tests/test_regexlexer.py
+++ b/tests/test_regexlexer.py
@@ -12,6 +12,7 @@ import unittest
from pygments.token import Text
from pygments.lexer import RegexLexer
+
class TestLexer(RegexLexer):
"""Test tuple state transitions including #pop."""
tokens = {
@@ -28,6 +29,7 @@ class TestLexer(RegexLexer):
],
}
+
class TupleTransTest(unittest.TestCase):
def test(self):
lx = TestLexer()