summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_str.py
blob: 1b261068c4d0a9d9c3b644a602208f1280f17762 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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()