Lines Matching refs:QueryString
63 Y.Assert.areSame(J(testCase[2]), J(Y.QueryString.parse(testCase[0])));
68 Y.Assert.areSame(J(testCase[2]), J(Y.QueryString.parse(testCase[0], ";", ":")));
73 Y.Assert.areSame(J(testCase[2]), J(Y.QueryString.parse(testCase[1])));
77 var f = Y.QueryString.parse("a=b&q=x%3Dy%26y%3Dz");
78 f.q = Y.QueryString.parse(f.q);
82 var f = Y.QueryString.parse("a:b;q:x%3Ay%3By%3Az", ";", ":");
83 f.q = Y.QueryString.parse(f.q, ";", ":");
91 testStringifyCyclical : "QueryString.stringify. Cyclical reference"
96 Y.Assert.areSame(testCase[1], Y.QueryString.stringify(testCase[2], { arrayKey: true }));
101 Y.Assert.areSame(testCase[1], Y.QueryString.stringify(testCase[2], { arrayKey: true, sep: ";", eq: ":" }));
106 Y.Assert.areSame(testCase[1], Y.QueryString.stringify(testCase[0]), { arrayKey: true });
112 Y.QueryString.stringify(f);
115 var f = Y.QueryString.stringify({
117 q : Y.QueryString.stringify({
125 var f = Y.QueryString.stringify({
127 q : Y.QueryString.stringify({
135 var f = Y.QueryString.stringify({ foo: ["bar","baz"] });