mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #4791 from gregolsen/reflection_test_fixed
reflection test fixed
This commit is contained in:
commit
3bf859daf6
3 changed files with 4 additions and 4 deletions
|
@ -1280,7 +1280,7 @@ class HasManyAssociationsTest < ActiveRecord::TestCase
|
|||
end
|
||||
|
||||
def test_get_ids_for_ordered_association
|
||||
assert_equal [companies(:second_client).id, companies(:first_client).id], companies(:first_firm).clients_ordered_by_rating_ids
|
||||
assert_equal [companies(:second_client).id, companies(:first_client).id], companies(:first_firm).clients_ordered_by_name_ids
|
||||
end
|
||||
|
||||
def test_assign_ids_ignoring_blanks
|
||||
|
|
|
@ -189,8 +189,8 @@ class ReflectionTest < ActiveRecord::TestCase
|
|||
|
||||
def test_reflection_of_all_associations
|
||||
# FIXME these assertions bust a lot
|
||||
assert_equal 38, Firm.reflect_on_all_associations.size
|
||||
assert_equal 28, Firm.reflect_on_all_associations(:has_many).size
|
||||
assert_equal 39, Firm.reflect_on_all_associations.size
|
||||
assert_equal 29, Firm.reflect_on_all_associations(:has_many).size
|
||||
assert_equal 10, Firm.reflect_on_all_associations(:has_one).size
|
||||
assert_equal 0, Firm.reflect_on_all_associations(:belongs_to).size
|
||||
end
|
||||
|
|
|
@ -45,7 +45,7 @@ class Firm < Company
|
|||
has_many :unsorted_clients_with_symbol, :class_name => :Client
|
||||
has_many :clients_sorted_desc, :class_name => "Client", :order => "id DESC"
|
||||
has_many :clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :order => "id"
|
||||
has_many :clients_ordered_by_rating, :order => "rating", :class_name => "Client"
|
||||
has_many :clients_ordered_by_name, :order => "name", :class_name => "Client"
|
||||
has_many :unvalidated_clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :validate => false
|
||||
has_many :dependent_clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :order => "id", :dependent => :destroy
|
||||
has_many :exclusively_dependent_clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :order => "id", :dependent => :delete_all
|
||||
|
|
Loading…
Reference in a new issue