diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2011-04-01 17:13:03 +0100 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2011-04-01 17:13:03 +0100 |
commit | 88b065078365dc26c9b6cd694ae619e43bf4bfcc (patch) | |
tree | 100c9f047f6491bf7b82bf113148806899772e1f /tests/test_basic_api.py | |
parent | d5c467feac99ca707b883a2d1532e37a738f400d (diff) | |
download | pygments-88b065078365dc26c9b6cd694ae619e43bf4bfcc.tar.gz |
Added PostgreSQL specific SQL and interactive session lexers
Diffstat (limited to 'tests/test_basic_api.py')
-rw-r--r-- | tests/test_basic_api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_basic_api.py b/tests/test_basic_api.py index e8b9cf9a..77c0aaea 100644 --- a/tests/test_basic_api.py +++ b/tests/test_basic_api.py @@ -87,7 +87,7 @@ def test_lexer_options(): if cls.__name__ not in ( 'PythonConsoleLexer', 'RConsoleLexer', 'RubyConsoleLexer', 'SqliteConsoleLexer', 'MatlabSessionLexer', 'ErlangShellLexer', - 'BashSessionLexer', 'LiterateHaskellLexer'): + 'BashSessionLexer', 'LiterateHaskellLexer', 'PostgresConsoleLexer'): inst = cls(ensurenl=False) ensure(inst.get_tokens('a\nb'), 'a\nb') inst = cls(ensurenl=False, stripall=True) |