diff options
Diffstat (limited to 'test/ruby/body_empty/config.ru')
-rw-r--r-- | test/ruby/body_empty/config.ru | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/ruby/body_empty/config.ru b/test/ruby/body_empty/config.ru new file mode 100644 index 00000000..a8684b9b --- /dev/null +++ b/test/ruby/body_empty/config.ru @@ -0,0 +1,5 @@ +app = Proc.new do |env| + ['200', {}, []] +end + +run app |