aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/type/type_map_test.rb10
1 files changed, 10 insertions, 0 deletions
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