Sha256: 6b0dfbf63e9548e23db9635e8c07d3bc77133ec87610afd46e5a0da5095aec91

Contents?: true

Size: 1.72 KB

Versions: 59

Compression:

Stored size: 1.72 KB

Contents

require File.expand_path(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

59 entries across 59 versions & 10 rubygems

Version Path
dchelimsky-rspec-rails-1.1.10 spec/rails/matchers/have_text_spec.rb
dchelimsky-rspec-rails-1.1.11.1 spec/rails/matchers/have_text_spec.rb
dchelimsky-rspec-rails-1.1.11.2 spec/rails/matchers/have_text_spec.rb
dchelimsky-rspec-rails-1.1.11.3 spec/rails/matchers/have_text_spec.rb
dchelimsky-rspec-rails-1.1.11 spec/rails/matchers/have_text_spec.rb
dchelimsky-rspec-rails-1.1.6 spec/rails/matchers/have_text_spec.rb
dchelimsky-rspec-rails-1.1.7 spec/rails/matchers/have_text_spec.rb
dchelimsky-rspec-rails-1.1.8 spec/rails/matchers/have_text_spec.rb
dchelimsky-rspec-rails-1.1.9 spec/rails/matchers/have_text_spec.rb
jcnetdev-rspec-rails-1.1.5 spec/rails/matchers/have_text_spec.rb
jnstq-acts_as_sms-0.1.0 test/vendor/plugins/rspec-rails/spec/rails/matchers/have_text_spec.rb
jnstq-acts_as_sms-0.1.1 test/vendor/plugins/rspec-rails/spec/rails/matchers/have_text_spec.rb
jnstq-acts_as_sms-0.1.3 test/vendor/plugins/rspec-rails/spec/rails/matchers/have_text_spec.rb
jnstq-acts_as_sms-0.1.4 test/vendor/plugins/rspec-rails/spec/rails/matchers/have_text_spec.rb
jstorimer-deep-test-2.0.0 sample_rails_project/vendor/plugins/rspec_on_rails/spec/rails/matchers/have_text_spec.rb
jstorimer-deep-test-1.4.0 sample_rails_project/vendor/plugins/rspec_on_rails/spec/rails/matchers/have_text_spec.rb
jstorimer-deep-test-1.3.0 sample_rails_project/vendor/plugins/rspec_on_rails/spec/rails/matchers/have_text_spec.rb
jstorimer-deep-test-1.2.0 sample_rails_project/vendor/plugins/rspec_on_rails/spec/rails/matchers/have_text_spec.rb
jstorimer-deep-test-1.1.0 sample_rails_project/vendor/plugins/rspec_on_rails/spec/rails/matchers/have_text_spec.rb
jstorimer-deep-test-1.0.0 sample_rails_project/vendor/plugins/rspec_on_rails/spec/rails/matchers/have_text_spec.rb