Skip to content

Commit 5267853

Browse files
authored
Merge pull request #17 from snapshotpl/patch-2
Add some test cases
2 parents 93a2513 + 02fe510 commit 5267853

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

tests/FixerTest.php

+15
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,21 @@ public function theTests()
151151
], [
152152
'json' => '{"a":[',
153153
'expect' => '{"a":[]}',
154+
], [
155+
'json' => '{"a":{',
156+
'expect' => '{"a":{}}',
157+
], [
158+
'json' => '{"a":{"b":"a"}',
159+
'expect' => '{"a":{"b":"a"}}',
160+
], [
161+
'json' => '{"a":{"b":"a"',
162+
'expect' => '{"a":{"b":"a"}}',
163+
], [
164+
'json' => '{"a":{"b":1',
165+
'expect' => '{"a":{"b":1}}',
166+
], [
167+
'json' => '{"a":{"b":1}',
168+
'expect' => '{"a":{"b":1}}',
154169
], [
155170
'json' => '{"a":"b","b":["',
156171
'expect' => '{"a":"b","b":[""]}',

0 commit comments

Comments
 (0)