about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-11-18 02:48:41 +0800
committerEric Wong <normalperson@yhbt.net>2010-11-18 02:48:41 +0800
commit01ae51fa5fda40a63277b0d1189925fb209c75a9 (patch)
treefe4a43486f1a8ff325c7345bd9af5728ba6c8171
parent958c1f81a2c570f4027d8fe2dd4f5c40ac7ed430 (diff)
downloadunicorn-01ae51fa5fda40a63277b0d1189925fb209c75a9.tar.gz
oops :x
-rw-r--r--t/t0013.ru12
-rw-r--r--t/t0014.ru12
2 files changed, 24 insertions, 0 deletions
diff --git a/t/t0013.ru b/t/t0013.ru
new file mode 100644
index 0000000..48a3a34
--- /dev/null
+++ b/t/t0013.ru
@@ -0,0 +1,12 @@
+#\ -E none
+use Rack::ContentLength
+use Rack::ContentType, 'text/plain'
+app = lambda do |env|
+  case env['rack.input']
+  when Unicorn::StreamInput
+    [ 200, {}, %w(OK) ]
+  else
+    [ 500, {}, %w(NO) ]
+  end
+end
+run app
diff --git a/t/t0014.ru b/t/t0014.ru
new file mode 100644
index 0000000..b0bd2b7
--- /dev/null
+++ b/t/t0014.ru
@@ -0,0 +1,12 @@
+#\ -E none
+use Rack::ContentLength
+use Rack::ContentType, 'text/plain'
+app = lambda do |env|
+  case env['rack.input']
+  when Unicorn::TeeInput
+    [ 200, {}, %w(OK) ]
+  else
+    [ 500, {}, %w(NO) ]
+  end
+end
+run app