diff options
author | Yves Senn <yves.senn@gmail.com> | 2014-04-25 15:48:39 -0500 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2014-04-25 15:48:39 -0500 |
commit | 856ea2a6a5cd3770948f1d0f9de188770f10653d (patch) | |
tree | f6c275aa320a5f9ff8a69265207a186650fcb45b /activerecord/test/cases | |
parent | 0dd3d2c0d490211b4d0eda87003716224465e9a5 (diff) | |
parent | 18fa87b8663ac88fd280e9860505598fe04cd46a (diff) | |
download | rails-856ea2a6a5cd3770948f1d0f9de188770f10653d.tar.gz rails-856ea2a6a5cd3770948f1d0f9de188770f10653d.tar.bz2 rails-856ea2a6a5cd3770948f1d0f9de188770f10653d.zip |
Merge pull request #14853 from kassio/kb-fix-custom-join-table-habtm
Fix to use custom join table in habtm
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r-- | activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb b/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb index 366472c6fd..5d33634da2 100644 --- a/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb +++ b/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb @@ -21,6 +21,7 @@ require 'models/membership' require 'models/sponsor' require 'models/country' require 'models/treaty' +require 'models/vertex' require 'active_support/core_ext/string/conversions' class ProjectWithAfterCreateHook < ActiveRecord::Base @@ -819,4 +820,8 @@ class HasAndBelongsToManyAssociationsTest < ActiveRecord::TestCase assert_equal 1, treasure.rich_people.size assert_equal person_first_name, rich_person.first_name, 'should not run associated person validation on update when validate: false' end + + def test_custom_join_table + assert_equal 'edges', Vertex.reflect_on_association(:sources).join_table + end end |