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)
This commit is contained in:
Walter Dörwald 2004-08-26 16:53:04 +00:00
parent 592ef6110f
commit 57d88e5abd
4 changed files with 23 additions and 24 deletions

View file

@ -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