Sha256: a420dad0fba163bd4d8fbc7d72f0a740834f3b71137168daf38da6dad045a446

Contents?: true

Size: 1.51 KB

Versions: 12

Compression:

Stored size: 1.51 KB

Contents

# let's have asset_select available in ActiveSupport test cases
ActiveSupport::TestCase.class_eval do
  include ActionController::Assertions::SelectorAssertions
end

# strangely, request.path is empty when caching kicks in, this seems to fix that
ActionController::TestProcess.module_eval do
  def build_request_uri_with_set_path(*args)
    build_request_uri_without_set_path(*args)
    @request.path = @request.env['REQUEST_URI']
  end
  alias_method_chain :build_request_uri, :set_path
end

ActionController::Caching::Pages::ClassMethods.module_eval do
  def caches_page(*actions)
    # We want to turn perform_caching on/off at runtime, so we need the filters to
    # be registered no matter what. perform_caching is checked at all relevant other
    # places, too, though.
    # return unless perform_caching
    options = actions.extract_options!
    after_filter({:only => actions}.merge(options)) { |c| c.cache_page }
  end
end

ActionController::Assertions::RoutingAssertions.module_eval do
  def recognized_request_for(path, request_method = nil)
    path = "/#{path}" unless path.first == '/'

    request = ActionController::TestRequest.new
    request.env["REQUEST_METHOD"] = request_method.to_s.upcase if request_method
    # Overwritten to use the existing request's host if present because Rails always
    # creates a new request and gives us no way to initialize the request host
    request.host = @request.host if @request
    request.path   = path

    ActionController::Routing::Routes.recognize(request)
    request
  end
end

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
adva-0.2.4 test/test_helper/extensions/rails_patch.rb
adva-0.2.3 test/test_helper/extensions/rails_patch.rb
adva-0.2.2 test/test_helper/extensions/rails_patch.rb
adva-0.2.1 test/test_helper/extensions/rails_patch.rb
adva-0.2.0 test/test_helper/extensions/rails_patch.rb
adva-0.1.4 test/test_helper/extensions/rails_patch.rb
adva-0.1.3 test/test_helper/extensions/rails_patch.rb
adva-0.1.2 test/test_helper/extensions/rails_patch.rb
adva-0.1.1 test/test_helper/extensions/rails_patch.rb
adva-0.1.0 test/test_helper/extensions/rails_patch.rb
adva_cms-0.0.1 test/test_helper/extensions/rails_patch.rb
adva-0.0.1 adva_cms/test/test_helper/extensions/rails_patch.rb