about summary refs log tree commit homepage
path: root/t/env.ru
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-02-17 18:53:52 -0800
committerEric Wong <normalperson@yhbt.net>2010-02-17 18:53:52 -0800
commit5cef71dc6c640db414c41f59a5016fd3f5326bf9 (patch)
tree500cd48b0d92ba8b847ce6839d6889d5304fa11b /t/env.ru
parent13598f977ec3b707bd1a8f2abb99825cb8f85b58 (diff)
downloadunicorn-5cef71dc6c640db414c41f59a5016fd3f5326bf9.tar.gz
Diffstat (limited to 't/env.ru')
-rw-r--r--t/env.ru3
1 files changed, 3 insertions, 0 deletions
diff --git a/t/env.ru b/t/env.ru
new file mode 100644
index 0000000..388412e
--- /dev/null
+++ b/t/env.ru
@@ -0,0 +1,3 @@
+use Rack::ContentLength
+use Rack::ContentType, "text/plain"
+run lambda { |env| [ 200, {}, [ env.inspect << "\n" ] ] }