This commit is contained in:
Hiroshi SHIBATA 2020-11-13 13:19:38 +09:00
Родитель e70a1d9b7f
Коммит 69c5474e10
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F9CF13417264FAC2
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -26,7 +26,7 @@ describe "Net::HTTP#send_request" do
response = @http.send_request("HEAD", "/request")
response.body.should be_nil
@methods.each do |method|
(@methods - %w[POST PUT]).each do |method|
response = @http.send_request(method, "/request")
response.body.should == "Request type: #{method}"
end