From 01ae51fa5fda40a63277b0d1189925fb209c75a9 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Thu, 18 Nov 2010 02:48:41 +0800 Subject: add missing test files oops :x --- t/t0013.ru | 12 ++++++++++++ t/t0014.ru | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 t/t0013.ru create mode 100644 t/t0014.ru 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 -- cgit v1.2.3-24-ge0c7