~ubuntu-branches/ubuntu/vivid/nodejs/vivid

« back to all changes in this revision

Viewing changes to test/simple/test-querystring.js

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2011-11-29 19:27:51 UTC
  • mfrom: (7.1.16 sid)
  • Revision ID: package-import@ubuntu.com-20111129192751-25xi6duvkemghsb5
Tags: 0.4.12-1ubuntu1
* Merge from Debian unstable,
* Drop 2007_remove_internet_test.patch, update
  2005_expected_failing_tests.patch instead:
  - Allow test-dgram-multicast to fail, requires root privileges.
  - Allow test-c-ares, test-regress-GH-819 and test-net-connect-timeout to
    fail, they require network access.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
     'undef': ''}],
49
49
  [' foo = bar ', '%20foo%20=%20bar%20', {' foo ': ' bar '}],
50
50
  ['foo=%zx', 'foo=%25zx', {'foo': '%zx'}],
51
 
  ['foo=%EF%BF%BD', 'foo=%EF%BF%BD', {'foo': '\ufffd' }]
 
51
  ['foo=%EF%BF%BD', 'foo=%EF%BF%BD', {'foo': '\ufffd' }],
 
52
  // See: https://github.com/joyent/node/issues/1707
 
53
  [ 'hasOwnProperty=x&toString=foo&valueOf=bar&__defineGetter__=baz',
 
54
    'hasOwnProperty=x&toString=foo&valueOf=bar&__defineGetter__=baz',
 
55
    { hasOwnProperty: 'x',
 
56
      toString: 'foo',
 
57
      valueOf: 'bar',
 
58
      __defineGetter__: 'baz' } ]
52
59
];
53
60
 
54
61
// [ wonkyQS, canonicalQS, obj ]