(self)
| 449 | text2, 'find', pattern2) |
| 450 | |
| 451 | def test_lower(self): |
| 452 | self.checkequal('hello', 'HeLLo', 'lower') |
| 453 | self.checkequal('hello', 'hello', 'lower') |
| 454 | self.checkraises(TypeError, 'hello', 'lower', 42) |
| 455 | |
| 456 | def test_upper(self): |
| 457 | self.checkequal('HELLO', 'HeLLo', 'upper') |
nothing calls this directly
no test coverage detected