summaryrefslogtreecommitdiff
path: root/locales/tests/test_fallbackcollator.py
diff options
context:
space:
mode:
Diffstat (limited to 'locales/tests/test_fallbackcollator.py')
-rw-r--r--locales/tests/test_fallbackcollator.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/locales/tests/test_fallbackcollator.py b/locales/tests/test_fallbackcollator.py
new file mode 100644
index 0000000..071652d
--- /dev/null
+++ b/locales/tests/test_fallbackcollator.py
@@ -0,0 +1,25 @@
+##############################################################################
+#
+# Copyright (c) 2004 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+
+import unittest
+from zope.testing import doctest
+
+def test_suite():
+ return unittest.TestSuite((
+ doctest.DocFileSuite('../fallbackcollator.txt'),
+ ))
+
+if __name__ == '__main__':
+ unittest.main(defaultTest='test_suite')
+