提交 d1756ba9 编写于 作者: R Rafael Mendonça França

Merge pull request #14793 from arthurnn/fixes_8928

Fixed has_many association to make it support irregular inflections.
* Fixed has_many association to make it support irregular inflections.
Fixes #8928.
*arthurnn*, *Javier Goizueta*
* Fixed a problem where count used with a grouping was not returning a Hash.
Fixes #14721.
......
......@@ -449,9 +449,9 @@ def can_find_inverse_of_automatically?(reflection)
end
def derive_class_name
class_name = name.to_s.camelize
class_name = name.to_s
class_name = class_name.singularize if collection?
class_name
class_name.camelize
end
def derive_foreign_key
......
......@@ -87,6 +87,14 @@ def test_reflection_klass_for_nested_class_name
end
end
def test_irregular_reflection_class_name
ActiveSupport::Inflector.inflections do |inflect|
inflect.irregular 'plural_irregular', 'plurales_irregulares'
end
reflection = AssociationReflection.new(:has_many, 'plurales_irregulares', nil, {}, ActiveRecord::Base)
assert_equal 'PluralIrregular', reflection.class_name
end
def test_aggregation_reflection
reflection_for_address = AggregateReflection.new(
:composed_of, :address, nil, { :mapping => [ %w(address_street street), %w(address_city city), %w(address_country country) ] }, Customer
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册