2008-04-05 16:49:18 +00:00
|
|
|
Dir[File.join(File.dirname(__FILE__), "webrat", "*.rb")].each do |file|
|
|
|
|
require File.expand_path(file)
|
|
|
|
end
|
2008-03-03 00:35:46 +00:00
|
|
|
|
2008-04-04 16:12:46 +00:00
|
|
|
module Webrat
|
2008-04-04 15:17:28 +00:00
|
|
|
VERSION = '0.2.1'
|
2008-04-05 16:49:18 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
module ActionController
|
|
|
|
module Integration
|
|
|
|
class Session
|
|
|
|
|
|
|
|
unless instance_methods.include?("put_via_redirect")
|
|
|
|
include Webrat::RedirectActions
|
|
|
|
end
|
|
|
|
|
|
|
|
def current_page
|
|
|
|
@current_page ||= Webrat::Page.new(self)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Issues a GET request for a page, follows any redirects, and verifies the final page
|
|
|
|
# load was successful.
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# visits "/"
|
|
|
|
def visits(*args)
|
|
|
|
@current_page = Webrat::Page.new(self, *args)
|
|
|
|
end
|
|
|
|
|
|
|
|
[:fills_in, :clicks_button, :selects, :chooses, :checks, :unchecks].each do |method_name|
|
|
|
|
define_method(method_name) do |*args|
|
|
|
|
current_page.send(method_name, *args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|