Class: ElabsMatchers::Matchers::HaveHeader::HaveHeaderMatcher

Inherits:
Struct
  • Object
show all
Defined in:
lib/elabs_matchers/matchers/have_header.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#pageObject (readonly)

Returns the value of attribute page.



9
10
11
# File 'lib/elabs_matchers/matchers/have_header.rb', line 9

def page
  @page
end

#textObject

Returns the value of attribute text

Returns:

  • (Object)

    the current value of text



8
9
10
# File 'lib/elabs_matchers/matchers/have_header.rb', line 8

def text
  @text
end

Instance Method Details

#does_not_match?(page) ⇒ Boolean

Returns:

  • (Boolean)


16
17
18
19
# File 'lib/elabs_matchers/matchers/have_header.rb', line 16

def does_not_match?(page)
  @page = page
  page.has_no_selector?(selector_type, selector, :text => text)
end

#failure_messageObject Also known as: failure_message_for_should



21
22
23
24
# File 'lib/elabs_matchers/matchers/have_header.rb', line 21

def failure_message
  headers = page.all(selector_type, selector).map { |h| "'#{h.text}'" }.to_sentence
  "Expected header to be '#{text}' but it had the headers #{headers}."
end

#failure_message_when_negatedObject Also known as: failure_message_for_should_not



27
28
29
# File 'lib/elabs_matchers/matchers/have_header.rb', line 27

def failure_message_when_negated
  "Expected header not to be '#{text}' but it was."
end

#matches?(page) ⇒ Boolean

Returns:

  • (Boolean)


11
12
13
14
# File 'lib/elabs_matchers/matchers/have_header.rb', line 11

def matches?(page)
  @page = page
  page.has_selector?(selector_type, selector, :text => text)
end