Sha256: 692cab24eaa3e7db039ba36e60f8c6e8ecd3a6943237843153098ec996f9dccf
Contents?: true
Size: 481 Bytes
Versions: 49
Compression:
Stored size: 481 Bytes
Contents
require File.expand_path('../../../../../spec_helper', __FILE__) require 'net/http' describe "Net::HTTPGenericRequest#request_body_permitted?" do it "returns true when the request is expected to have a body" do request = Net::HTTPGenericRequest.new("POST", true, true, "/some/path") request.request_body_permitted?.should be_true request = Net::HTTPGenericRequest.new("POST", false, true, "/some/path") request.request_body_permitted?.should be_false end end
Version data entries
49 entries across 49 versions & 2 rubygems