Tests: added test for Ruby default encoding.
This commit is contained in:
8
test/ruby/encoding/config.ru
Normal file
8
test/ruby/encoding/config.ru
Normal file
@@ -0,0 +1,8 @@
|
||||
app = Proc.new do |env|
|
||||
['200', {
|
||||
'Content-Length' => '0',
|
||||
'X-Enc' => Encoding.default_external.to_s,
|
||||
}, ['']]
|
||||
end
|
||||
|
||||
run app
|
||||
Reference in New Issue
Block a user