summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_str.py
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2004-08-26 16:53:04 (GMT)
committerWalter Dörwald <walter@livinglogic.de>2004-08-26 16:53:04 (GMT)
commit57d88e5abd06cefcc8d52d62765c36214b1c1956 (patch)
treecdfb770ea520db3fe7d3dff2a9fd687bf7e0dcfb /Lib/test/test_str.py
parent592ef6110f8280918894372d062a20f9eb158828 (diff)
downloadcpython-57d88e5abd06cefcc8d52d62765c36214b1c1956.zip
cpython-57d88e5abd06cefcc8d52d62765c36214b1c1956.tar.gz
cpython-57d88e5abd06cefcc8d52d62765c36214b1c1956.tar.bz2
Move test_bug1001011() to string_tests.MixinStrUnicodeTest so that
it can be used for str and unicode. Drop the test for "".join([s]) is s because this is an implementation detail (and doesn't work for unicode)
Diffstat (limited to 'Lib/test/test_str.py')
-rw-r--r--Lib/test/test_str.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_str.py b/Lib/test/test_str.py
index 1295a8c..82632f1 100644
--- a/Lib/test/test_str.py
+++ b/Lib/test/test_str.py
@@ -5,7 +5,8 @@ from test import test_support, string_tests
class StrTest(
string_tests.CommonTest,
string_tests.MixinStrUnicodeUserStringTest,
- string_tests.MixinStrUserStringTest
+ string_tests.MixinStrUserStringTest,
+ string_tests.MixinStrUnicodeTest,
):
type2test = str