Sha256: c5fd31682af8a1da255b93006e97a8d0a900dec25c3dd5df95d340d6360c2817
Contents?: true
Size: 1.26 KB
Versions: 47
Compression:
Stored size: 1.26 KB
Contents
module Spec module Rails module Matchers class IncludeText #: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.include?(expected) end def failure_message "expected to find #{expected.inspect} in #{actual.inspect}" end def negative_failure_message "expected not to include text #{expected.inspect}" end def to_s "include text #{expected.inspect}" end private attr_reader :expected attr_reader :actual end # :call-seq: # response.should include_text(expected) # response.should_not include_text(expected) # # Accepts a String, matching using include? # # Use this instead of <tt>response.should have_text()</tt> # when you either don't know or don't care where on the page # this text appears. # # == Examples # # response.should include_text("This text will be in the actual string") def include_text(text) IncludeText.new(text) end end end end
Version data entries
47 entries across 47 versions & 8 rubygems