class Capybara::Queries::CurrentPathQuery
Public Class Methods
new(expected_path, options = {})
click to toggle source
# File lib/capybara/queries/current_path_query.rb, line 8 def initialize(expected_path, options = {}) @expected_path = expected_path @options = { url: false, only_path: false }.merge(options) assert_valid_keys end
Public Instance Methods
failure_message()
click to toggle source
# File lib/capybara/queries/current_path_query.rb, line 34 def failure_message failure_message_helper end
negative_failure_message()
click to toggle source
# File lib/capybara/queries/current_path_query.rb, line 38 def negative_failure_message failure_message_helper(' not') end
resolves_for?(session)
click to toggle source
# File lib/capybara/queries/current_path_query.rb, line 16 def resolves_for?(session) @actual_path = if options[:url] session.current_url else if options[:only_path] ::Addressable::URI.parse(session.current_url).path else ::Addressable::URI.parse(session.current_url).request_uri end end if @expected_path.is_a? Regexp @actual_path.match(@expected_path) else ::Addressable::URI.parse(@expected_path) == Addressable::URI.parse(@actual_path) end end
Private Instance Methods
assert_valid_keys()
click to toggle source
Calls superclass method
Capybara::Queries::BaseQuery#assert_valid_keys
# File lib/capybara/queries/current_path_query.rb, line 53 def assert_valid_keys super if options[:url] && options[:only_path] raise ArgumentError, "the :url and :only_path options cannot both be true" end end
failure_message_helper(negated = '')
click to toggle source
# File lib/capybara/queries/current_path_query.rb, line 44 def failure_message_helper(negated = '') verb = (@expected_path.is_a?(Regexp))? 'match' : 'equal' "expected #{@actual_path.inspect}#{negated} to #{verb} #{@expected_path.inspect}" end
valid_keys()
click to toggle source
# File lib/capybara/queries/current_path_query.rb, line 49 def valid_keys [:wait, :url, :only_path] end