summaryrefslogtreecommitdiff
path: root/tests/test_regexlexer.py
diff options
context:
space:
mode:
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()