dev-ruby/net-http-pipeline: fix tests; add ruby22, ruby23

Package-Manager: portage-2.3.0
This commit is contained in:
Hans de Graaff
2016-11-17 08:01:33 +01:00
parent 567109324e
commit bbb4cf4fed
2 changed files with 21 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
--- test/test_net_http_pipeline.rb.old 2016-11-17 07:58:57.284997283 +0100
+++ test/test_net_http_pipeline.rb 2016-11-17 07:58:50.345168508 +0100
@@ -96,6 +96,7 @@
def http_get
get = []
get << 'GET / HTTP/1.1'
+ get << 'Accept-Encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3'
get << 'Accept: */*'
get << 'User-Agent: Ruby' if RUBY_VERSION > '1.9'
get.push nil, nil
@@ -106,6 +107,7 @@
def http_post
get = []
get << 'POST / HTTP/1.1'
+ get << 'Accept-Encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3'
get << 'Accept: */*'
get << 'User-Agent: Ruby' if RUBY_VERSION > '1.9'
get.push nil, nil