Sha256: 06d1f82ee4fe13c8a807aa8b15ea447f7633000b4237d4db929a4a67c727c8b5
Contents?: true
Size: 1.34 KB
Versions: 3
Compression:
Stored size: 1.34 KB
Contents
module Spec module Rails module Matchers class HaveText #:nodoc: def initialize(expected) @expected = expected end def matches?(response_or_text) @actual = response_or_text.respond_to?(:body) ? response_or_text.body : response_or_text return actual =~ expected if Regexp === expected return actual == expected unless Regexp === expected end def failure_message "expected #{expected.inspect}, got #{actual.inspect}" end def negative_failure_message "expected not to have text #{expected.inspect}" end def to_s "have text #{expected.inspect}" end private attr_reader :expected attr_reader :actual end # :call-seq: # response.should have_text(expected) # response.should_not have_text(expected) # # Accepts a String or a Regexp, matching a String using == # and a Regexp using =~. # # Use this instead of <tt>response.should have_tag()</tt> # when you either don't know or don't care where on the page # this text appears. # # == Examples # # response.should have_text("This is the expected text") def have_text(text) HaveText.new(text) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems