(self)
| 18 | self._test_scanstring(simplejson.decoder.py_scanstring) |
| 19 | |
| 20 | def test_c_scanstring(self): |
| 21 | if not simplejson.decoder.c_scanstring: |
| 22 | return |
| 23 | self._test_scanstring(simplejson.decoder.c_scanstring) |
| 24 | |
| 25 | self.assertTrue(isinstance(simplejson.decoder.c_scanstring('""', 0)[0], str)) |
| 26 | |
| 27 | def _test_scanstring(self, scanstring): |
| 28 | if sys.maxunicode == 65535: |
nothing calls this directly
no test coverage detected