diff options
author | Michal Čihař <michal@cihar.com> | 2017-01-31 07:54:53 +0100 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-02-03 03:04:33 +0700 |
commit | b3ee552e4b918fb720111b23147e24fa5475a74b (patch) | |
tree | 73b6f8b9ec2e2b0932ce8e922bffca4dc11c1830 /test/test_utils.py | |
parent | a22b2fd19bd8c08d50f884d1903486d4f00f76ec (diff) |
[utils] Handle single-line comments in js_to_json
Diffstat (limited to 'test/test_utils.py')
-rw-r--r-- | test/test_utils.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_utils.py b/test/test_utils.py index a74d59f34..954bb7d8b 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -791,6 +791,9 @@ class TestUtil(unittest.TestCase): on = js_to_json('{ 0: /* " \n */ ",]" , }') self.assertEqual(json.loads(on), {'0': ',]'}) + on = js_to_json('{ 0: // comment\n1 }') + self.assertEqual(json.loads(on), {'0': 1}) + on = js_to_json(r'["<p>x<\/p>"]') self.assertEqual(json.loads(on), ['<p>x</p>']) |