Removing definition of webrat_session method out of the loop

This commit is contained in:
Bryan Helmkamp 2008-12-01 20:33:01 -05:00
parent c86931b401
commit 33cfb1cd6a
1 changed files with 4 additions and 4 deletions

View File

@ -7,14 +7,14 @@ module Webrat
def #{meth}(*args, &blk)
webrat_session.#{meth}(*args, &blk)
end
def webrat_session
@_webrat_session ||= ::Webrat.session_class.new(self)
end
RUBY
end
end
def webrat_session
@_webrat_session ||= ::Webrat.session_class.new(self)
end
# all of these methods delegate to the @session, which should
# be created transparently.
#