Tests: added Ruby tests with array in header values

This commit is contained in:
Andrei Zeliankou
2024-01-15 17:53:46 +00:00
committed by andrey-zelenkov
parent a1e00b4e28
commit 4e08f49549
4 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
app = Proc.new do |env|
['200', {
'x-array' => ['name=value', '', 'value', 'av'],
}, []]
end
run app