mirror of
https://github.com/python/cpython.git
synced 2025-07-19 09:15:34 +00:00

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)
26 lines
618 B
Python
26 lines
618 B
Python
import unittest
|
|
from test import test_support, string_tests
|
|
|
|
|
|
class StrTest(
|
|
string_tests.CommonTest,
|
|
string_tests.MixinStrUnicodeUserStringTest,
|
|
string_tests.MixinStrUserStringTest,
|
|
string_tests.MixinStrUnicodeTest,
|
|
):
|
|
|
|
type2test = str
|
|
|
|
# We don't need to propagate to str
|
|
def fixtype(self, obj):
|
|
return obj
|
|
|
|
def test_formatting(self):
|
|
string_tests.MixinStrUnicodeUserStringTest.test_formatting(self)
|
|
self.assertRaises(OverflowError, '%c'.__mod__, 0x1234)
|
|
|
|
def test_main():
|
|
test_support.run_unittest(StrTest)
|
|
|
|
if __name__ == "__main__":
|
|
test_main()
|