Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-http-client-unescaped-path.js « parallel « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 51e1fc7828be86871d625c55df5e898c9dbff2c8 (plain)
1
2
3
4
5
6
7
8
var common = require('../common');
var assert = require('assert');
var http = require('http');

assert.throws(function() {
  // Path with spaces in it should throw.
  http.get({ path: 'bad path' }, assert.fail);
}, /contains unescaped characters/);