summaryrefslogtreecommitdiff
path: root/tests/test_html_formatter.py
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2006-12-20 15:49:55 +0100
committergbrandl <devnull@localhost>2006-12-20 15:49:55 +0100
commit59db12020433e4787555cfeccaeae65f872f59b6 (patch)
tree0fd2e0e985a30af244474fe57ec6ba0122b81b8c /tests/test_html_formatter.py
parent00def2e249f137df4c18539a1f87c7d57acdbfb2 (diff)
downloadpygments-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.py21
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