public
Description: Webrat - Ruby Acceptance Testing for Web applications
Homepage: http://gitrdoc.com/brynary/webrat/tree/master/
Clone URL: git://github.com/brynary/webrat.git
Adding response method to MechanizeSession
brynary (author)
Tue Nov 18 19:56:35 -0800 2008
commit  ec8bc82c243541a1fef06de19ed1ecd338881984
tree    e89ac6ae88060c01625c8a1f96699d38822130a1
parent  0dd7ea2ae0ad699034b8fd2fe87f180c9cea33e7
...
28
29
30
 
 
 
 
31
32
33
...
28
29
30
31
32
33
34
35
36
37
0
@@ -28,6 +28,10 @@ module Webrat
0
       @response = @mechanize.post(url, post_data)
0
     end
0
 
0
+    def response
0
+      @response
0
+    end
0
+    
0
     def response_body
0
       @response.content
0
     end

Comments