rails/activerecord/test/cases/associations
Matthias Zirnstein bf556880f2 Remove method redefined warnings for test suite
has_many definitions with "name" as singular and as plural e.g.
  has_many :welcome_posts_with_comment
  has_many :welcome_posts_with_comments

Ruby mentions it with:

lib/active_record/associations/builder/collection_association.rb:65:
  warning: method redefined; discarding old welcome_posts_with_comment_ids
lib/active_record/associations/builder/collection_association.rb:65:
  warning: previous definition of welcome_posts_with_comment_ids was here
lib/active_record/associations/builder/collection_association.rb:75:
  warning: method redefined; discarding old welcome_posts_with_comment_ids=
lib/active_record/associations/builder/collection_association.rb:75:
  warning: previous definition of welcome_posts_with_comment_ids= was here
2014-01-05 18:18:07 +01:00
..
association_scope_test.rb Represent association scope options as AR::Relations insternally. 2012-07-13 16:23:06 +01:00
belongs_to_associations_test.rb On destroying do not touch destroyed belongs to association. 2013-12-23 15:44:48 +02:00
callbacks_test.rb Revert "Use flat_map { } instead of map {}.flatten" 2012-10-05 12:07:16 -03:00
cascaded_eager_loading_test.rb Improve the tests to not call assert_nothing_raised 2014-01-01 14:15:01 -02:00
eager_load_includes_full_sti_class_test.rb Revert "Merge pull request #8989 from robertomiranda/use-rails-4-find-by" 2013-01-18 09:15:19 -05:00
eager_load_nested_include_test.rb Deprecate ActiveRecord::Base.scoped. 2012-07-27 17:27:47 +01:00
eager_singularization_test.rb Deprecate ActiveRecord::Base.scoped. 2012-07-27 17:27:47 +01:00
eager_test.rb Fix that eager loading of polymorphic associations did not work with association empty?/any? predicates any more (there is still a problem when select is applied to a relation, or if you try association#exists? -- but its easier to work around) 2013-11-14 14:43:14 -08:00
extension_test.rb Revert the whole refactoring in the association builder classes. 2013-12-11 19:28:32 -02:00
has_and_belongs_to_many_associations_test.rb make sure cached table name is a string. fixes #12582 2013-12-12 10:47:07 -08:00
has_many_associations_test.rb Merge pull request #10134 from derikson/collection_proxy_select_with_multiple_args 2014-01-03 13:03:19 -08:00
has_many_through_associations_test.rb Prevent the counter cache from being decremented twice 2013-11-11 19:53:02 +03:00
has_one_associations_test.rb Raise ArgumentError when has_one is used with counter_cache 2013-11-29 19:21:49 -08:00
has_one_through_associations_test.rb Raise ArgumentError when has_one is used with counter_cache 2013-11-29 19:21:49 -08:00
inner_join_association_test.rb Remove method redefined warnings for test suite 2014-01-05 18:18:07 +01:00
inverse_associations_test.rb inversed instance should not be reloaded after stale state was changed 2013-10-13 21:51:40 +01:00
join_model_test.rb Fix some typos in AR- CHANGELOG, tests, method doc. fixed 2013-03-20 11:17:01 +05:30
nested_through_associations_test.rb preheat habtm column cache 2013-10-02 17:22:28 -07:00