Sha256: 2e9359cdcdcdd822debe30ca1deb9499c804cb1619db2ce616221510d58ad5ef

Contents?: true

Size: 741 Bytes

Versions: 15

Compression:

Stored size: 741 Bytes

Contents

require 'abstract_unit'

# Provide some static controllers.
class BenchmarkedController < ActionController::Base
  def public_action
    render :nothing => true
  end

  def rescue_action(e)
    raise e
  end
end

class BenchmarkTest < Test::Unit::TestCase
  class MockLogger
    def method_missing(*args)
    end
  end

  def setup
    @controller = BenchmarkedController.new
    # benchmark doesn't do anything unless a logger is set
    @controller.logger = MockLogger.new
    @request, @response = ActionController::TestRequest.new, ActionController::TestResponse.new
    @request.host = "test.actioncontroller.i"
  end

  def test_with_http_1_0_request
    @request.host = nil
    assert_nothing_raised { get :public_action }
  end
end

Version data entries

15 entries across 14 versions & 6 rubygems

Version Path
radiant-0.7.2 vendor/rails/actionpack/test/controller/benchmark_test.rb
vibes-bj-1.2.2 spec/rails_root/vendor/rails/actionpack/test/controller/benchmark_test.rb
vibes-bj-1.2.1 spec/rails_root/vendor/rails/actionpack/test/controller/benchmark_test.rb
usher-0.7.0 spec/rails2_2/vendor/rails/vendor/rails/actionpack/test/controller/benchmark_test.rb
usher-0.7.0 spec/rails2_2/vendor/rails/vendor/rails/actionpack/pkg/actionpack-2.2.2/test/controller/benchmark_test.rb
actionpack-2.2.3 test/controller/benchmark_test.rb
actionpack-2.1.0 test/controller/benchmark_test.rb
actionpack-2.1.1 test/controller/benchmark_test.rb
actionpack-2.1.2 test/controller/benchmark_test.rb
actionpack-2.2.2 test/controller/benchmark_test.rb
antfarm-0.3.0 rails/vendor/rails/actionpack/test/controller/benchmark_test.rb
antfarm-0.4.0 rails/vendor/rails/actionpack/test/controller/benchmark_test.rb
eactionpack-2.1.2 test/controller/benchmark_test.rb
radiant-0.7.0 vendor/rails/actionpack/test/controller/benchmark_test.rb
radiant-0.7.1 vendor/rails/actionpack/test/controller/benchmark_test.rb