about summary refs log tree commit homepage
path: root/t/env.ru
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-10-17 22:42:56 -0700
committerEric Wong <normalperson@yhbt.net>2009-10-17 22:42:56 -0700
commitc50132e156da457186929e5c36d9e16f636f48df (patch)
treeb292c5b521a3d31caef5085821bb8fbf7bd8dbfe /t/env.ru
parentcd91835b826b968df08ae1bcde794a9d54334182 (diff)
downloadrainbows-c50132e156da457186929e5c36d9e16f636f48df.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..c2355da
--- /dev/null
+++ b/t/env.ru
@@ -0,0 +1,3 @@
+use Rack::ContentLength
+use Rack::ContentType
+run lambda { |env| [ 200, {}, [ env.inspect << "\n" ] ] }