Changeset 9187
- Timestamp:
- 04/01/08 06:11:31 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/test/controller/dispatcher_test.rb
r9055 r9187 88 88 def test_to_prepare_with_identifier_replaces 89 89 a = b = nil 90 Dispatcher.to_prepare(:unique_id) { a = b = 1 }91 Dispatcher.to_prepare(:unique_id) { a = 2 }90 Dispatcher.to_prepare(:unique_id) { |*args| a = b = 1 } 91 Dispatcher.to_prepare(:unique_id) { |*args| a = 2 } 92 92 93 93 @dispatcher.unprepared = true