summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_str.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_str.py')
-rw-r--r--Lib/test/test_str.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/Lib/test/test_str.py b/Lib/test/test_str.py
new file mode 100644
index 0000000..1b26106
--- /dev/null
+++ b/Lib/test/test_str.py
@@ -0,0 +1,23 @@
+import unittest
+from test import test_support, string_tests
+
+
+class StrTest(
+ string_tests.CommonTest,
+ string_tests.MixinStrUnicodeUserStringTest,
+ string_tests.MixinStrUserStringTest
+ ):
+
+ type2test = str
+
+ # We don't need to propagate to str
+ def fixtype(self, obj):
+ return obj
+
+def test_main():
+ suite = unittest.TestSuite()
+ suite.addTest(unittest.makeSuite(StrTest))
+ test_support.run_suite(suite)
+
+if __name__ == "__main__":
+ test_main()