Files
node-v0.x-archive/test/mjsunit/test-remote-module-loading.js
2009-06-22 14:08:42 +02:00

20 lines
430 B
JavaScript

var s = new node.http.Server(function (req, res) {
var body = "exports.A = function() { return 'A';}";
res.sendHeader(200, [
["Content-Length", body.length],
["Content-Type", "text/plain"]
]);
res.sendBody(body);
res.finish();
});
s.listen(8000);
include("mjsunit.js");
var a = require("http://localhost:8000/")
function onLoad() {
assertInstanceof(a.A, Function);
assertEquals("A", a.A());
s.close();
}