diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/test_utils.py | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/test/test_utils.py b/test/test_utils.py index a9649397f..edd95c3e3 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -284,6 +284,10 @@ class TestUtil(unittest.TestCase):          d = json.loads(stripped)          self.assertEqual(d, [{"id": "532cb", "x": 3}]) +        stripped = strip_jsonp('parseMetadata({"STATUS":"OK"})\n\n\n//epc') +        d = json.loads(stripped) +        self.assertEqual(d, {'STATUS': 'OK'}) +      def test_uppercase_escape(self):          self.assertEqual(uppercase_escape('aä'), 'aä')          self.assertEqual(uppercase_escape('\\U0001d550'), '𝕐') | 
