Sha256: bdd457bebc48a06ae587418f9c54e14f2d8cf87f17928425c1ec3d8a6da2940c
Contents?: true
Size: 685 Bytes
Versions: 52
Compression:
Stored size: 685 Bytes
Contents
describe :net_httpheader_set_content_type, :shared => true do describe "when passed type, params" do before(:each) do @headers = NetHTTPHeaderSpecs::Example.new end it "sets the 'Content-Type' header entry based on the passed type and params" do @headers.send(@method, "text/html") @headers["Content-Type"].should == "text/html" @headers.send(@method, "text/html", "charset" => "utf-8") @headers["Content-Type"].should == "text/html; charset=utf-8" @headers.send(@method, "text/html", "charset" => "utf-8", "rubyspec" => "rocks") @headers["Content-Type"].should == "text/html; charset=utf-8; rubyspec=rocks" end end end
Version data entries
52 entries across 52 versions & 2 rubygems