diff options
author | gbrandl <devnull@localhost> | 2006-12-20 15:49:55 +0100 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2006-12-20 15:49:55 +0100 |
commit | 59db12020433e4787555cfeccaeae65f872f59b6 (patch) | |
tree | 0fd2e0e985a30af244474fe57ec6ba0122b81b8c /tests/test_html_formatter.py | |
parent | 00def2e249f137df4c18539a1f87c7d57acdbfb2 (diff) | |
download | pygments-59db12020433e4787555cfeccaeae65f872f59b6.tar.gz |
[svn] Add a reminder to write a HTML formatter test.
Diffstat (limited to 'tests/test_html_formatter.py')
-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 |