diff options
author | Georg Brandl <georg@python.org> | 2014-03-16 09:28:54 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-03-16 09:28:54 +0100 |
commit | 5d7d06c133a6eb1a613171d0477931560b0d6d21 (patch) | |
tree | 60a8350fe20c833a8ff3aa849664ada170574715 /tests/test_basic_api.py | |
parent | 8de8163669a0fa659b6c48b10030cf5a73e5df61 (diff) | |
parent | 3d9d8b7557d58ce882fc6ab70612af077ecacb29 (diff) | |
download | pygments-5d7d06c133a6eb1a613171d0477931560b0d6d21.tar.gz |
merge with iElectric/pygments-main
Diffstat (limited to 'tests/test_basic_api.py')
-rw-r--r-- | tests/test_basic_api.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/test_basic_api.py b/tests/test_basic_api.py index e89b5c31..be7a4747 100644 --- a/tests/test_basic_api.py +++ b/tests/test_basic_api.py @@ -16,7 +16,7 @@ from pygments import lexers, formatters, filters, format from pygments.token import _TokenType, Text from pygments.lexer import RegexLexer from pygments.formatters.img import FontNotFound -from pygments.util import text_type, StringIO, xrange +from pygments.util import text_type, StringIO, xrange, ClassNotFound import support @@ -138,6 +138,13 @@ def test_get_lexers(): for mimetype in mimetypes: assert cls == lexers.get_lexer_for_mimetype(mimetype).__class__.__name__ + try: + lexers.get_lexer_by_name(None) + except ClassNotFound: + pass + else: + raise Exception + def test_formatter_public_api(): ts = list(lexers.PythonLexer().get_tokens("def f(): pass")) |