diff options
author | Georg Brandl <georg@python.org> | 2014-03-04 15:49:38 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-03-04 15:49:38 +0100 |
commit | e7ec14d69541995b8e51c2d6f3be1ec6444b6edc (patch) | |
tree | 962ca3216596c5a1a216e7209746d86c693ca300 /tests/test_basic_api.py | |
parent | eea3ac45dadb7f90318ec1cc5cb92c3d2dc0079d (diff) | |
parent | da3cebf976e36d0ff5bf1ec8b045c4044387fcde (diff) | |
download | pygments-e7ec14d69541995b8e51c2d6f3be1ec6444b6edc.tar.gz |
Merged in asylumfunk/pygments-main/feature/makefile-highlight (pull request #290)
Fix Makefile highlighting with target expansion
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) |