338c92e5e6be3b87cb1e42ee602fad33c1b4a2fa
[platform/upstream/nodejs.git] / deps / npm / node_modules / request / tests / test-emptyBody.js
1 var request = require('../index')
2   , http = require('http')
3   , assert = require('assert')
4   ;
5
6 var s = http.createServer(function (req, resp) {
7   resp.statusCode = 200
8   resp.end('')
9 }).listen(8080, function () {
10   var r = request('http://localhost:8080', function (e, resp, body) {
11     assert.equal(resp.statusCode, 200)
12     assert.equal(body, "")
13
14     var r2 = request({ url: 'http://localhost:8080', json: {} }, function (e, resp, body) {
15             assert.equal(resp.statusCode, 200)
16             assert.equal(body, undefined)
17             s.close()
18          });
19   })
20 })