1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Ruby 1.9 compat: proc arity

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9190 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper 2008-04-01 06:11:56 +00:00
parent a2ad945627
commit ecdddc4de5

View file

@ -63,9 +63,9 @@ class DispatcherTest < Test::Unit::TestCase
def test_prepare_application_runs_callbacks_if_unprepared
a = b = c = nil
Dispatcher.to_prepare { a = b = c = 1 }
Dispatcher.to_prepare { b = c = 2 }
Dispatcher.to_prepare { c = 3 }
Dispatcher.to_prepare { |*args| a = b = c = 1 }
Dispatcher.to_prepare { |*args| b = c = 2 }
Dispatcher.to_prepare { |*args| c = 3 }
# Skip the callbacks when already prepared.
@dispatcher.unprepared = false
@ -99,7 +99,7 @@ class DispatcherTest < Test::Unit::TestCase
def test_to_prepare_only_runs_once_if_not_loading_dependencies
Dependencies.stubs(:load?).returns(false)
called = 0
Dispatcher.to_prepare(:unprepared_test) { called += 1 }
Dispatcher.to_prepare(:unprepared_test) { |*args| called += 1 }
2.times { dispatch }
assert_equal 1, called
end