mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
14 lines
276 B
Ruby
14 lines
276 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ActionController
|
|
module Testing
|
|
# Behavior specific to functional tests
|
|
module Functional # :nodoc:
|
|
def recycle!
|
|
@_url_options = nil
|
|
self.formats = nil
|
|
self.params = nil
|
|
end
|
|
end
|
|
end
|
|
end
|