summaryrefslogtreecommitdiff
path: root/tests/test_basic_api.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-05-20 07:37:47 +0200
committerGeorg Brandl <georg@python.org>2013-05-20 07:37:47 +0200
commitfcc0147c89efa90a992bf9a5b8560ef72eaba1eb (patch)
tree6bb8b9a941f4835b2b9ce31faf8a4d35377f40e6 /tests/test_basic_api.py
parent4f8ffd30e963bb4a7c8691a32c91279e114ecf8b (diff)
parentac957840bdb18b1d4fb8202228cae6b00dd23a52 (diff)
downloadpygments-fcc0147c89efa90a992bf9a5b8560ef72eaba1eb.tar.gz
merge with timjb/pygments-main (Agda lexers), pull request #203
Diffstat (limited to 'tests/test_basic_api.py')
-rw-r--r--tests/test_basic_api.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_basic_api.py b/tests/test_basic_api.py
index 00dc26f0..18ed8d64 100644
--- a/tests/test_basic_api.py
+++ b/tests/test_basic_api.py
@@ -92,9 +92,9 @@ def test_lexer_options():
if cls.__name__ not in (
'PythonConsoleLexer', 'RConsoleLexer', 'RubyConsoleLexer',
'SqliteConsoleLexer', 'MatlabSessionLexer', 'ErlangShellLexer',
- 'BashSessionLexer', 'LiterateHaskellLexer', 'PostgresConsoleLexer',
- 'ElixirConsoleLexer', 'JuliaConsoleLexer', 'RobotFrameworkLexer',
- 'DylanConsoleLexer', 'ShellSessionLexer'):
+ 'BashSessionLexer', 'LiterateHaskellLexer', 'LiterateAgdaLexer',
+ 'PostgresConsoleLexer', 'ElixirConsoleLexer', 'JuliaConsoleLexer',
+ 'RobotFrameworkLexer', 'DylanConsoleLexer', 'ShellSessionLexer'):
inst = cls(ensurenl=False)
ensure(inst.get_tokens('a\nb'), 'a\nb')
inst = cls(ensurenl=False, stripall=True)