We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3d5d99 commit b65b76fCopy full SHA for b65b76f
test/unit/client/query-tests.js
@@ -61,6 +61,12 @@ test("testing stringy array", function(){
61
assert.deepEqual(q.stringArrayParser(input), expected);
62
});
63
64
+test("testing stringy array containing escaped strings", function(){
65
+ var input = '{"\\"\\"\\"","\\\\\\\\\\\\"}';
66
+ var expected = ['"""','\\\\\\'];
67
+ assert.deepEqual(q.stringArrayParser(input), expected);
68
+});
69
+
70
test("testing NULL array", function(){
71
var input = '{NULL,NULL}';
72
var expected = [null,null];
0 commit comments