From c7e67446a3054998893d64cbab150810d2a99aa5 Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Wed, 21 Mar 2018 18:26:40 +0300 Subject: Tests: Ruby module. --- test/ruby/syntax_error/config.ru | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 test/ruby/syntax_error/config.ru (limited to 'test/ruby/syntax_error') diff --git a/test/ruby/syntax_error/config.ru b/test/ruby/syntax_error/config.ru new file mode 100644 index 00000000..45c42dad --- /dev/null +++ b/test/ruby/syntax_error/config.ru @@ -0,0 +1,5 @@ +app = Proc.new |env| + ['200', {'Content-Length' => '0'}, ['']] +end + +run app -- cgit