diff options
-rw-r--r-- | tests/test_html_formatter.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/test_html_formatter.py b/tests/test_html_formatter.py new file mode 100644 index 00000000..7e25aeaf --- /dev/null +++ b/tests/test_html_formatter.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +""" + Pygments HTML formatter tests + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + :copyright: 2006 by Georg Brandl. + :license: BSD, see LICENSE for more details. +""" + +import unittest +import StringIO +import random + +from pygments import lexers, formatters +from pygments.token import _TokenType + +class HtmlFormatterTest(unittest.TestCase): + + def test_external_css(self): + # TODO: write this test. + pass |