Methods
R
Instance Public methods
recycle!()
     # File actionpack/lib/action_controller/test_case.rb, line 205
205:     def recycle!
206:       @status = 200
207:       @header = {}
208:       @writer = lambda { |x| @body << x }
209:       @block = nil
210:       @length = 0
211:       @body = []
212:       @charset = @content_type = nil
213:       @request = @template = nil
214:     end