mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 15:06:33 +01:00
22 lines
498 B
JavaScript
22 lines
498 B
JavaScript
include("mjsunit.js");
|
|
PORT = 8888;
|
|
|
|
var body = "exports.A = function() { return 'A';}";
|
|
var server = new node.http.Server(function (req, res) {
|
|
res.sendHeader(200, [
|
|
["Content-Length", body.length],
|
|
["Content-Type", "text/plain"]
|
|
]);
|
|
res.sendBody(body);
|
|
res.finish();
|
|
});
|
|
server.listen(PORT);
|
|
|
|
function onLoad() {
|
|
node.http.cat("http://localhost:"+PORT, "utf8", function(status, content) {
|
|
assertEquals(body, content);
|
|
assertEquals(200, status)
|
|
server.close()
|
|
})
|
|
}
|