From 74c35b46e362a128fe06f909744da8bb1aeed0e0 Mon Sep 17 00:00:00 2001 From: Sean Griffin Date: Wed, 19 Nov 2014 11:24:18 -0800 Subject: Introduce test to demonstrate regression caused by da99a2a2 --- activerecord/test/cases/type/type_map_test.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'activerecord/test') diff --git a/activerecord/test/cases/type/type_map_test.rb b/activerecord/test/cases/type/type_map_test.rb index 4e32f92dd0..81ac7394a8 100644 --- a/activerecord/test/cases/type/type_map_test.rb +++ b/activerecord/test/cases/type/type_map_test.rb @@ -124,6 +124,16 @@ module ActiveRecord assert_equal mapping.lookup(3), 'string' assert_kind_of Type::Value, mapping.lookup(4) end + + def test_aliases_are_not_improperly_cached + mapping = HashLookupTypeMap.new + + mapping.register_type("foo") { |*args| args.join("-") } + mapping.alias_type("bar", "foo") + + assert_equal "bar-1-2-3", mapping.lookup("bar", 1, 2, 3) + assert_equal "foo-1-2-3", mapping.lookup("foo", 1, 2, 3) + end end end end -- cgit v1.2.3