Sha256: 897648a5b5678a2817b9c723ad41797599ab9c68f37484af948a655598e863fe

Contents?: true

Size: 1.6 KB

Versions: 12

Compression:

Stored size: 1.6 KB

Contents

require 'require_all'
require 'spec_helper'

require 'cream/helper/host'

describe Cream::Helper::Host do
  extend_view_with Cream::Helper::Host

  describe '#localhost?' do
    it "should return true if request.host is 'localhost'" do
      request = stub()
      request.stubs(:host).returns 'localhost'        
      
      with_engine do |e, view|
        view.stubs(:request).returns request

        res = e.run_template do 
          %{<%= localhost? %> }
        end
        res.should match /true/
      end    
    end

    it "should return true if request.host is '127.0.0.1'" do
      request = stub()
      request.stubs(:host).returns '127.0.0.1'        

      with_engine do |e, view|
        view.stubs(:request).returns request

        res = e.run_template do 
          %{<%= localhost? %> }
        end
        res.should match /true/
      end    
    end
  end

  describe '#publichost?' do
    it "should return false if request.host is 'localhost'" do
      request = stub()
      request.stubs(:host).returns 'localhost'        

      with_engine do |e, view|
        view.stubs(:request).returns request

        res = e.run_template do 
          %{<%= publichost? %> }
        end
        res.should match /false/
      end    
    end

    it "should return true if request.host is '214.353.343.222'" do
      request = stub()
      request.stubs(:host).returns '214.353.343.222'        

      with_engine do |e, view|
        view.stubs(:request).returns request

        res = e.run_template do 
          %{<%= publichost? %> }
        end
        res.should match /true/
      end    
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
cream-0.7.3 spec/cream/helper/host_spec.rb
cream-0.7.2 spec/cream/helper/host_spec.rb
cream-0.7.0 spec/cream/helper/host_spec.rb
cream-0.6.4 spec/cream/helper/host_spec.rb
cream-0.6.3 spec/cream/helper/host_spec.rb
cream-0.6.1 spec/cream/helper/host_spec.rb
cream-0.6.0 spec/cream/helper/host_spec.rb
cream-0.5.10 spec/cream/helper/host_spec.rb
cream-0.5.9 spec/cream/helper/host_spec.rb
cream-0.5.8 spec/cream/helper/host_spec.rb
cream-0.5.7 spec/cream/helper/host_spec.rb
cream-0.5.6 spec/cream/helper/host_spec.rb