MechanizeAdapter doesn't need to inherit from Session

This commit is contained in:
Bryan Helmkamp 2009-08-12 21:39:32 -04:00
parent 0412543e5a
commit 17713c9036
1 changed files with 5 additions and 1 deletions

View File

@ -1,11 +1,15 @@
require "mechanize"
module Webrat #:nodoc:
class MechanizeAdapter < Session #:nodoc:
class MechanizeAdapter #:nodoc:
extend Forwardable
attr_accessor :response
alias :page :response
def initialize(*args)
end
def request_page(url, http_method, data) #:nodoc:
super(absolute_url(url), http_method, data)
end