(self)
| 101 | |
| 102 | class TestStrings(SafeReprTestBase): |
| 103 | def test_str_small(self): |
| 104 | value = "A" * 5 |
| 105 | |
| 106 | self.assert_unchanged(value, "'AAAAA'") |
| 107 | self.assert_unchanged([value], "['AAAAA']") |
| 108 | |
| 109 | def test_str_large(self): |
| 110 | value = "A" * (SafeRepr.maxstring_outer + 10) |
nothing calls this directly
no test coverage detected