Sha256: e9c625c3d9ec0c6877036e12f3827b66e58dceb161bc8ffe117f8fa35e6bc523

Contents?: true

Size: 872 Bytes

Versions: 2

Compression:

Stored size: 872 Bytes

Contents

require "spec_helper"
require 'relevance/core_extensions/file'

describe "Relevance::CoreExtensions::Response#html?" do
  before do
    @response = OpenStruct.new
    @response.extend(Relevance::CoreExtensions::Response)
  end         
  
  it "should be html if the content-type is 'text/html'" do
    @response.content_type = "text/html"
    @response.should be_html
    @response.content_type = "text/html;charset=iso-8859-2"
    @response.should be_html
  end

  it "should not be html if the content-type isn't an html type" do
    @response.content_type = "text/plain"
    @response.should_not be_html
  end

  # better ideas welcome, but be careful not to  
  # castrate tarantula for proxies that don't set the content-type
  it "should pretend we have html if the content-type is nil" do
    @response.content_type = nil
    @response.should be_html
  end
  
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tarantula-0.4.1 spec/relevance/core_extensions/response_spec.rb
tarantula-0.4.0 spec/relevance/core_extensions/response_spec.rb