diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2018-03-21 18:26:40 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2018-03-21 18:26:40 +0300 |
commit | c7e67446a3054998893d64cbab150810d2a99aa5 (patch) | |
tree | 55e447f271a8553112d93149851b71a83eb5af43 /test/ruby/body_each_error | |
parent | 37051b6c15cce7d6ab01c50e1086f8ef0b34e93d (diff) | |
download | unit-c7e67446a3054998893d64cbab150810d2a99aa5.tar.gz unit-c7e67446a3054998893d64cbab150810d2a99aa5.tar.bz2 |
Tests: Ruby module.
Diffstat (limited to 'test/ruby/body_each_error')
-rw-r--r-- | test/ruby/body_each_error/config.ru | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/ruby/body_each_error/config.ru b/test/ruby/body_each_error/config.ru new file mode 100644 index 00000000..0d34603d --- /dev/null +++ b/test/ruby/body_each_error/config.ru @@ -0,0 +1,6 @@ +app = Proc.new do |env| + io = IO.new(0, 'r') + ['200', {'Content-Length' => '0'}, io] +end + +run app |