Sha256: 0366cf3cbd73ec608193cb1e92990ff6015c5c2cc04d60a7d0cd15cc1f76bc12
Contents?: true
Size: 844 Bytes
Versions: 49
Compression:
Stored size: 844 Bytes
Contents
require File.expand_path('../../../../../spec_helper', __FILE__) require 'net/http' require File.expand_path('../fixtures/classes', __FILE__) require File.expand_path('../shared/set_content_type', __FILE__) describe "Net::HTTPHeader#content_type" do before(:each) do @headers = NetHTTPHeaderSpecs::Example.new end it "returns the content type string, as per 'Content-Type' header entry" do @headers["Content-Type"] = "text/html" @headers.content_type.should == "text/html" @headers["Content-Type"] = "text/html;charset=utf-8" @headers.content_type.should == "text/html" end it "returns nil if the 'Content-Type' header entry does not exist" do @headers.content_type.should be_nil end end describe "Net::HTTPHeader#content_type=" do it_behaves_like :net_httpheader_set_content_type, :content_type= end
Version data entries
49 entries across 49 versions & 2 rubygems