diff options
author | Georg Brandl <georg@python.org> | 2014-03-04 15:34:47 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-03-04 15:34:47 +0100 |
commit | c4f087478df454ebe46e9af7e99d1542be172ec1 (patch) | |
tree | e19109e9626f9c8916938672301190c9acd5ea22 /tests/test_basic_api.py | |
parent | 78284511cd4d8c3a6c59e2a54b0fd8ecbce93c28 (diff) | |
parent | e048d61032829ab7a39089552cf450b37edc0027 (diff) | |
download | pygments-c4f087478df454ebe46e9af7e99d1542be172ec1.tar.gz |
Merged in tenbits/pygments-main (pull request #280)
MaskLexer
Diffstat (limited to 'tests/test_basic_api.py')
-rw-r--r-- | tests/test_basic_api.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_basic_api.py b/tests/test_basic_api.py index 78227d2f..e89b5c31 100644 --- a/tests/test_basic_api.py +++ b/tests/test_basic_api.py @@ -100,7 +100,8 @@ def test_lexer_options(): 'SqliteConsoleLexer', 'MatlabSessionLexer', 'ErlangShellLexer', 'BashSessionLexer', 'LiterateHaskellLexer', 'LiterateAgdaLexer', 'PostgresConsoleLexer', 'ElixirConsoleLexer', 'JuliaConsoleLexer', - 'RobotFrameworkLexer', 'DylanConsoleLexer', 'ShellSessionLexer'): + 'RobotFrameworkLexer', 'DylanConsoleLexer', 'ShellSessionLexer', + 'LiterateIdrisLexer'): inst = cls(ensurenl=False) ensure(inst.get_tokens('a\nb'), 'a\nb') inst = cls(ensurenl=False, stripall=True) |