about summary refs log tree commit homepage
path: root/t/t1000.ru
diff options
context:
space:
mode:
Diffstat (limited to 't/t1000.ru')
-rw-r--r--t/t1000.ru10
1 files changed, 0 insertions, 10 deletions
diff --git a/t/t1000.ru b/t/t1000.ru
deleted file mode 100644
index 4bb7348..0000000
--- a/t/t1000.ru
+++ /dev/null
@@ -1,10 +0,0 @@
-use Rack::ContentLength
-use Rack::ContentType
-run lambda { |env|
-  sleep 1
-  if env['rack.multithread'] && env['rainbows.model'] == :ThreadPool
-    [ 200, {}, [ Thread.current.inspect << "\n" ] ]
-  else
-    raise "rack.multithread is not true"
-  end
-}