module Symbiote::Pages::Assertion

Public Instance Methods

asserted_title() click to toggle source
# File lib/symbiote/pages.rb, line 24
def asserted_title
  @title
end
asserted_url() click to toggle source
# File lib/symbiote/pages.rb, line 15
def asserted_url
  @url
end
title_is(title) click to toggle source
# File lib/symbiote/pages.rb, line 19
def title_is(title)
  title_is_empty if title.nil? || title.empty?
  @title = title
end
url_is(url) click to toggle source
# File lib/symbiote/pages.rb, line 10
def url_is(url)
  url_is_empty if url.nil? || url.empty?
  @url = url
end