summaryrefslogtreecommitdiff
path: root/test/test_io.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_io.py')
-rwxr-xr-xtest/test_io.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/test_io.py b/test/test_io.py
new file mode 100755
index 000000000..b82911e44
--- /dev/null
+++ b/test/test_io.py
@@ -0,0 +1,32 @@
+#! /usr/bin/env python
+
+# Author: Felix Wiemann
+# Contact: Felix_Wiemann@ososo.de
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+
+"""
+Test module for io.py.
+"""
+
+import unittest
+import DocutilsTestSupport # must be imported before docutils
+from docutils import io
+
+
+class InputTests(unittest.TestCase):
+
+ def test_bom(self):
+ input = io.StringInput(source='\xef\xbb\xbf foo \xef\xbb\xbf bar',
+ encoding='utf8')
+ # Assert BOMs are gone.
+ self.assertEquals(input.read(), u' foo bar')
+ # With unicode input:
+ input = io.StringInput(source=u'\ufeff foo \ufeff bar')
+ # Assert BOMs are still there.
+ self.assertEquals(input.read(), u'\ufeff foo \ufeff bar')
+
+
+if __name__ == '__main__':
+ unittest.main()