about summary refs log tree commit homepage
path: root/t/t3000.ru
diff options
context:
space:
mode:
Diffstat (limited to 't/t3000.ru')
-rw-r--r--t/t3000.ru6
1 files changed, 6 insertions, 0 deletions
diff --git a/t/t3000.ru b/t/t3000.ru
new file mode 100644
index 0000000..7053c1a
--- /dev/null
+++ b/t/t3000.ru
@@ -0,0 +1,6 @@
+use Rack::ContentLength
+use Rack::ContentType
+run lambda { |env|
+  Actor.sleep 1
+  [ 200, {}, [ Thread.current.inspect << "\n" ] ]
+}