summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--test/test_njs.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/test_njs.py b/test/test_njs.py
index 1f564656..14662ff8 100644
--- a/test/test_njs.py
+++ b/test/test_njs.py
@@ -50,6 +50,12 @@ class TestNJS(TestApplicationProto):
self.check_expression('${uri + host}')
self.check_expression('${uri + `${host}`}')
+ def test_njs_iteration(self, temp_dir):
+ self.create_files('Connection,Host', 'close,localhost')
+
+ self.check_expression('/${Object.keys(headers).sort().join()}')
+ self.check_expression('/${Object.values(headers).sort().join()}')
+
def test_njs_variables(self, temp_dir):
self.create_files('str', 'localhost', '127.0.0.1')