Entity handling fixes
[rss2maildir.git] / tests / unittests / EntityTests.py
diff --git a/tests/unittests/EntityTests.py b/tests/unittests/EntityTests.py
new file mode 100755 (executable)
index 0000000..b317f4d
--- /dev/null
@@ -0,0 +1,18 @@
+#!/usr/bin/python
+
+import unittest
+import os
+
+import ParsingTests
+
+class EntityTests(ParsingTests.ParsingTest):
+    def testEntities(self):
+        return self.runParsingTest("entities")
+
+def suite():
+    suite = unittest.TestSuite()
+    suite.addTest(SpacingTests("testEntities"))
+    return suite
+
+if __name__ == "__main__":
+    unittest.main()