mirror of
https://github.com/TracksApp/tracks.git
synced 2026-03-08 21:52:36 +01:00
freeze rails 2.3.9
This commit is contained in:
parent
ee751a5ced
commit
6b95deef85
1916 changed files with 240923 additions and 0 deletions
32
vendor/rails/actionpack/test/controller/benchmark_test.rb
vendored
Normal file
32
vendor/rails/actionpack/test/controller/benchmark_test.rb
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue