about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/GNUmakefile1
-rw-r--r--t/simple-http_FiberPool.ru9
2 files changed, 10 insertions, 0 deletions
diff --git a/t/GNUmakefile b/t/GNUmakefile
index 359f300..934ce47 100644
--- a/t/GNUmakefile
+++ b/t/GNUmakefile
@@ -22,6 +22,7 @@ models := ThreadPool ThreadSpawn Rev EventMachine
 ifeq ($(RUBY_VERSION),1.9.1) # 1.9.2-preview1 was broken
   models += Revactor
   models += FiberSpawn
+  models += FiberPool
 
   # technically this works under 1.8, too, it's just slow
   models += RevThreadSpawn
diff --git a/t/simple-http_FiberPool.ru b/t/simple-http_FiberPool.ru
new file mode 100644
index 0000000..ae5b649
--- /dev/null
+++ b/t/simple-http_FiberPool.ru
@@ -0,0 +1,9 @@
+use Rack::ContentLength
+use Rack::ContentType
+run lambda { |env|
+  if env['rack.multithread'] == false && env['rainbows.model'] == :FiberPool
+    [ 200, {}, [ Thread.current.inspect << "\n" ] ]
+  else
+    raise "rack.multithread is not true"
+  end
+}