diff options
author | Georg Brandl <georg@python.org> | 2013-01-09 13:24:33 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-01-09 13:24:33 +0100 |
commit | c7baf27b4058f53f8d26be23e45fb3e7772656eb (patch) | |
tree | cbe61af680e678990e108760272381501a80edbb /tests/test_basic_api.py | |
parent | d3f74b1897d2cc5887527bf5a3faefcdcc20cb08 (diff) | |
parent | 07dc045f5ad2b94cb8c99313184e7306a62813ed (diff) | |
download | pygments-c7baf27b4058f53f8d26be23e45fb3e7772656eb.tar.gz |
Merged in andyli/pygments-main/ExtendedRegexLexer-tuple-newstate (pull request #131: ExtendedRegexLexer handles tuple new_state the same way as RegexLexer)
Diffstat (limited to 'tests/test_basic_api.py')
-rw-r--r-- | tests/test_basic_api.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_basic_api.py b/tests/test_basic_api.py index bc4eb771..f6643308 100644 --- a/tests/test_basic_api.py +++ b/tests/test_basic_api.py @@ -3,7 +3,7 @@ Pygments basic API tests ~~~~~~~~~~~~~~~~~~~~~~~~ - :copyright: Copyright 2006-2012 by the Pygments team, see AUTHORS. + :copyright: Copyright 2006-2013 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ @@ -93,7 +93,7 @@ def test_lexer_options(): 'PythonConsoleLexer', 'RConsoleLexer', 'RubyConsoleLexer', 'SqliteConsoleLexer', 'MatlabSessionLexer', 'ErlangShellLexer', 'BashSessionLexer', 'LiterateHaskellLexer', 'PostgresConsoleLexer', - 'ElixirConsoleLexer', 'JuliaConsoleLexer'): + 'ElixirConsoleLexer', 'JuliaConsoleLexer', 'RobotFrameworkLexer'): inst = cls(ensurenl=False) ensure(inst.get_tokens('a\nb'), 'a\nb') inst = cls(ensurenl=False, stripall=True) |