Tests: added test for Ruby default encoding.

This commit is contained in:
Andrei Zeliankou
2021-03-26 15:42:58 +00:00
parent 97b4de0d4a
commit c093ee7ec5
2 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
app = Proc.new do |env|
['200', {
'Content-Length' => '0',
'X-Enc' => Encoding.default_external.to_s,
}, ['']]
end
run app