mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
9287790df8
- Fixed the wrong use of with_indifferent_access on hash in the test which failed for isolated tests - Renamed to appropriately specify what the test does
11 lines
314 B
Ruby
11 lines
314 B
Ruby
require 'abstract_unit'
|
|
require 'active_support/hash_with_indifferent_access'
|
|
|
|
class HashWithIndifferentAccessTest < ActiveSupport::TestCase
|
|
def test_reverse_merge
|
|
hash = HashWithIndifferentAccess.new key: :old_value
|
|
hash.reverse_merge! key: :new_value
|
|
assert_equal :old_value, hash[:key]
|
|
end
|
|
|
|
end
|