Sha256: 2c58048b0cf0cefc23ba7ae616a3d17f6fb66f5ced426e96c48c94e13d06f1cc

Contents?: true

Size: 638 Bytes

Versions: 78

Compression:

Stored size: 638 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 < ActionController::TestCase
  tests BenchmarkedController

  class MockLogger
    def method_missing(*args)
    end
  end

  def setup
    # benchmark doesn't do anything unless a logger is set
    @controller.logger = MockLogger.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

78 entries across 77 versions & 18 rubygems

Version Path
elkinsware-erubis_rails_helper-0.6.0 test/controller/benchmark_test.rb
elkinsware-erubis_rails_helper-0.6.1 test/controller/benchmark_test.rb
elkinsware-erubis_rails_helper-0.9.0 test/controller/benchmark_test.rb
elkinsware-erubis_rails_helper-0.9.1 test/controller/benchmark_test.rb
elkinsware-erubis_rails_helper-0.9.5 test/controller/benchmark_test.rb
ghazel-erubis_rails_helper-0.9.5 test/controller/benchmark_test.rb
actionpack-2.3.18 test/controller/benchmark_test.rb
actionpack_csi-2.3.5.p8 test/controller/benchmark_test.rb
actionpack-2.3.17-rack-upgrade-2.3.17 test/controller/benchmark_test.rb
actionpack-2.3.17 test/controller/benchmark_test.rb
actionpack_csi-2.3.5.p7 test/controller/benchmark_test.rb
actionpack_csi-2.3.5.p6 test/controller/benchmark_test.rb
actionpack-2.3.16 test/controller/benchmark_test.rb
actionpack-rack-upgrade-2-2.3.16 test/controller/benchmark_test.rb
actionpack-rack-upgrade-2-2.3.15 test/controller/benchmark_test.rb
actionpack-2.3.15 test/controller/benchmark_test.rb
actionpack-rack-upgrade-2.3.16 test/controller/benchmark_test.rb
actionpack-rack-upgrade-2.3.15 test/controller/benchmark_test.rb
actionpack-rack-upgrade-2.3.14 test/controller/benchmark_test.rb
radiant-1.0.0 ruby-debug/ruby/1.8/gems/actionpack-2.3.14/test/controller/benchmark_test.rb