class RoutingTestHelpers::TestSet
Attributes
strict[R]
Public Class Methods
new(block, strict = false)
click to toggle source
Calls superclass method
Object::new
# File actionpack/test/abstract_unit.rb, line 336 def initialize(block, strict = false) @block = block @strict = strict super() end
Private Instance Methods
make_request(env)
click to toggle source
Calls superclass method
# File actionpack/test/abstract_unit.rb, line 344 def make_request(env) Request.new super, url_helpers, @block, strict end