summaryrefslogtreecommitdiff
path: root/spec/ruby/library/net/http/httpheader/content_type_spec.rb
blob: 1f8b4ba326665d7d6f97410743dccf905b384262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require_relative '../../../../spec_helper'
require 'net/http'
require_relative 'fixtures/classes'
require_relative 'shared/set_content_type'

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