Sha256: 005244a5e4aed614325c7bb8594d480558464eafbb32b0d0b712ee79e80a29eb

Contents?: true

Size: 1.71 KB

Versions: 11

Compression:

Stored size: 1.71 KB

Contents

require File.dirname(__FILE__) + '/../../../spec_helper'

describe "have_text" do
  
  describe "where target is a Regexp" do
    it 'should should match submitted text using a regexp' do
      string = 'foo'
      string.should have_text(/fo*/)
    end
  end
  
  describe "where target is a String" do
    it 'should match submitted text using a string' do
      string = 'foo'
      string.should have_text('foo')
    end
  end
  
end

describe "have_text",
  :type => :controller do
  ['isolation','integration'].each do |mode|
    if mode == 'integration'
      integrate_views
    end

    describe "where target is a response (in #{mode} mode)" do
      controller_name :render_spec

      it "should pass with exactly matching text" do
        post 'text_action'
        response.should have_text("this is the text for this action")
      end

      it "should pass with matching text (using Regexp)" do
        post 'text_action'
        response.should have_text(/is the text/)
      end

      it "should fail with matching text" do
        post 'text_action'
        lambda {
          response.should have_text("this is NOT the text for this action")
        }.should fail_with("expected \"this is NOT the text for this action\", got \"this is the text for this action\"")
      end

      it "should fail when a template is rendered" do
        post 'some_action'
        lambda {
          response.should have_text("this is the text for this action")
        }.should fail_with(/expected \"this is the text for this action\", got .*/)
      end
      
      it "should pass using should_not with incorrect text" do
        post 'text_action'
        response.should_not have_text("the accordian guy")
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 3 rubygems

Version Path
dchelimsky-rspec-rails-1.1.11.4 spec/spec/rails/matchers/have_text_spec.rb
dchelimsky-rspec-rails-1.1.11.5 spec/spec/rails/matchers/have_text_spec.rb
dchelimsky-rspec-rails-1.1.11.6 spec/spec/rails/matchers/have_text_spec.rb
dchelimsky-rspec-rails-1.1.11.7 spec/spec/rails/matchers/have_text_spec.rb
dchelimsky-rspec-rails-1.1.12 spec/spec/rails/matchers/have_text_spec.rb
rspec-rails-1.1.12 spec/spec/rails/matchers/have_text_spec.rb
spree-0.6.0 vendor/plugins/rspec-rails/spec/spec/rails/matchers/have_text_spec.rb
spree-0.7.0 vendor/plugins/rspec-rails/spec/spec/rails/matchers/have_text_spec.rb
spree-0.7.1 vendor/plugins/rspec-rails/spec/spec/rails/matchers/have_text_spec.rb
spree-0.8.0 vendor/plugins/rspec-rails/spec/spec/rails/matchers/have_text_spec.rb
spree-0.8.1 vendor/plugins/rspec-rails/spec/spec/rails/matchers/have_text_spec.rb