diff options
author | Yasuo Honda <yasuo.honda@gmail.com> | 2017-01-09 19:27:54 +0000 |
---|---|---|
committer | Fumiaki MATSUSHIMA <mtsmfm@gmail.com> | 2017-03-26 17:12:13 +0900 |
commit | ef6391d4537d9ff1ce46da786a1fccccd886e246 (patch) | |
tree | 871ade46e30778de95192f94092e2ebb814ab4c1 /activerecord/test/cases | |
parent | 2a129380e82c81caaf02a099f01d319f0d54a7ab (diff) | |
download | rails-ef6391d4537d9ff1ce46da786a1fccccd886e246.tar.gz rails-ef6391d4537d9ff1ce46da786a1fccccd886e246.tar.bz2 rails-ef6391d4537d9ff1ce46da786a1fccccd886e246.zip |
Load :author_addresses
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r-- | activerecord/test/cases/associations/left_outer_join_association_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/left_outer_join_association_test.rb b/activerecord/test/cases/associations/left_outer_join_association_test.rb index 42dbbad1c8..2aca3523c4 100644 --- a/activerecord/test/cases/associations/left_outer_join_association_test.rb +++ b/activerecord/test/cases/associations/left_outer_join_association_test.rb @@ -7,7 +7,7 @@ require "models/categorization" require "models/person" class LeftOuterJoinAssociationTest < ActiveRecord::TestCase - fixtures :authors, :essays, :posts, :comments, :categorizations, :people + fixtures :authors, :essays, :posts, :comments, :categorizations, :people, :author_addresses def test_construct_finder_sql_applies_aliases_tables_on_association_conditions result = Author.left_outer_joins(:thinking_posts, :welcome_posts).to_a |