summaryrefslogtreecommitdiffhomepage
path: root/test/node/write_buffer/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/node/write_buffer/app.js')
-rwxr-xr-xtest/node/write_buffer/app.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/node/write_buffer/app.js b/test/node/write_buffer/app.js
new file mode 100755
index 00000000..f41de2a1
--- /dev/null
+++ b/test/node/write_buffer/app.js
@@ -0,0 +1,6 @@
+#!/usr/bin/env node
+
+require('unit-http').createServer(function (req, res) {
+ res.writeHead(200, {'Content-Type': 'text/plain'});
+ res.end(new Buffer([0x62, 0x75, 0x66, 0x66, 0x65, 0x72]));
+}).listen(7080);