Last change
on this file since 484 was
484,
checked in by hendrikvanantwerpen, 11 years ago
|
Commit node_modules, to make checkouts and builds more deterministic.
|
File size:
377 bytes
|
Line | |
---|
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('asdf') |
---|
9 | }).listen(8080, function () { |
---|
10 | var r = request('http://localhost:8080', function (e, resp) { |
---|
11 | assert.equal(JSON.parse(JSON.stringify(r)).response.statusCode, 200) |
---|
12 | s.close() |
---|
13 | }) |
---|
14 | }) |
---|
Note: See
TracBrowser
for help on using the repository browser.