Tests: Ruby module.
This commit is contained in:
15
test/ruby/errors_write_to_s_custom/config.ru
Normal file
15
test/ruby/errors_write_to_s_custom/config.ru
Normal file
@@ -0,0 +1,15 @@
|
||||
app = Proc.new do |env|
|
||||
|
||||
class Custom
|
||||
def to_s()
|
||||
nil
|
||||
end
|
||||
end
|
||||
|
||||
e = Custom.new()
|
||||
|
||||
env['rack.errors'].write(e)
|
||||
['200', {'Content-Length' => '0'}, ['']]
|
||||
end
|
||||
|
||||
run app
|
||||
Reference in New Issue
Block a user