Class: Webrat::Matchers::HasContent

Inherits:
Object
  • Object
show all
Defined in:
lib/webrat/core/matchers/have_content.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(content) ⇒ HasContent

Returns a new instance of HasContent.



5
6
7
# File 'lib/webrat/core/matchers/have_content.rb', line 5

def initialize(content)
  @content = content
end

Instance Method Details

#content_messageObject



37
38
39
40
41
42
43
44
# File 'lib/webrat/core/matchers/have_content.rb', line 37

def content_message
  case @content
  when String
    "include \"#{@content}\""
  when Regexp
    "match #{@content.inspect}"
  end
end

#failure_messageObject

Returns

String

The failure message.



23
24
25
# File 'lib/webrat/core/matchers/have_content.rb', line 23

def failure_message
  "expected the following element's content to #{content_message}:\n#{squeeze_space(@element)}"
end

#matches?(stringlike) ⇒ Boolean

Returns:

  • (Boolean)


9
10
11
12
13
14
15
16
17
18
19
# File 'lib/webrat/core/matchers/have_content.rb', line 9

def matches?(stringlike)
  @document = Webrat::XML.document(stringlike)
  @element = @document.inner_text

  case @content
  when String
    @element.gsub(/\s+/, ' ').include?(@content)
  when Regexp
    @element.match(@content)
  end
end

#negative_failure_messageObject

Returns

String

The failure message to be displayed in negative matches.



29
30
31
# File 'lib/webrat/core/matchers/have_content.rb', line 29

def negative_failure_message
  "expected the following element's content to not #{content_message}:\n#{squeeze_space(@element)}"
end

#squeeze_space(inner_text) ⇒ Object



33
34
35
# File 'lib/webrat/core/matchers/have_content.rb', line 33

def squeeze_space(inner_text)
  inner_text.gsub(/^\s*$/, "").squeeze("\n")
end