summaryrefslogtreecommitdiffhomepage
path: root/test/ruby/hooks/config.ru
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/hooks/config.ru')
-rw-r--r--test/ruby/hooks/config.ru7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/ruby/hooks/config.ru b/test/ruby/hooks/config.ru
new file mode 100644
index 00000000..f3069558
--- /dev/null
+++ b/test/ruby/hooks/config.ru
@@ -0,0 +1,7 @@
+app = Proc.new do |env|
+ ['200', {
+ 'Content-Length' => '0'
+ }, ['']]
+end
+
+run app