summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/node/options/app.js4
-rw-r--r--test/test_node_application.py6
2 files changed, 10 insertions, 0 deletions
diff --git a/test/node/options/app.js b/test/node/options/app.js
new file mode 100644
index 00000000..bc538080
--- /dev/null
+++ b/test/node/options/app.js
@@ -0,0 +1,4 @@
+require('http').createServer({}, function (req, res) {
+ res.writeHead(200, {'Content-Length': 12, 'Content-Type': 'text/plain'})
+ .end('Hello World\n');
+}).listen(8080);
diff --git a/test/test_node_application.py b/test/test_node_application.py
index cb775210..88ae3136 100644
--- a/test/test_node_application.py
+++ b/test/test_node_application.py
@@ -21,6 +21,12 @@ def test_node_application_basic():
assert_basic_application()
+def test_node_application_options(wait_for_record):
+ client.load('options')
+
+ assert_basic_application()
+ assert wait_for_record(r'constructor was called with unsupported') is not None
+
def test_node_application_loader_unit_http():
client.load('loader/unit_http')