Merge branch 'master' of git://github.com/aslakhellesoy/webrat into aslakhellesoy/master
This commit is contained in:
commit
792f178002
|
@ -0,0 +1,13 @@
|
|||
require 'webrat'
|
||||
|
||||
module Webrat
|
||||
class RackSession < Session
|
||||
def response_body
|
||||
@response.body
|
||||
end
|
||||
|
||||
def response_code
|
||||
@response.status
|
||||
end
|
||||
end
|
||||
end
|
|
@ -0,0 +1,13 @@
|
|||
require 'webrat/rack/rack_session'
|
||||
require 'sinatra'
|
||||
require 'sinatra/test/methods'
|
||||
|
||||
module Webrat
|
||||
class SinatraSession < RackSession
|
||||
include Sinatra::Test::Methods
|
||||
|
||||
def get(*args)
|
||||
get_it(*args)
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue