aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/associations_extensions_test.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-11-06 19:25:58 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-11-06 19:25:58 +0000
commit89ec75edc9a4d9064c0e644c5be0949f5119967c (patch)
tree51e02fc606b88bb974cd8019e88fc8885eb9fd22 /activerecord/test/associations_extensions_test.rb
parentda7752e59057fb7d72b972461fe459bdd413f910 (diff)
downloadrails-89ec75edc9a4d9064c0e644c5be0949f5119967c.tar.gz
rails-89ec75edc9a4d9064c0e644c5be0949f5119967c.tar.bz2
rails-89ec75edc9a4d9064c0e644c5be0949f5119967c.zip
Fixed missing join table fixtures
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2897 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/associations_extensions_test.rb')
-rw-r--r--activerecord/test/associations_extensions_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/associations_extensions_test.rb b/activerecord/test/associations_extensions_test.rb
index 320432bc28..915056c529 100644
--- a/activerecord/test/associations_extensions_test.rb
+++ b/activerecord/test/associations_extensions_test.rb
@@ -5,7 +5,7 @@ require 'fixtures/project'
require 'fixtures/developer'
class AssociationsExtensionsTest < Test::Unit::TestCase
- fixtures :projects, :developers, :comments, :posts
+ fixtures :projects, :developers, :developers_projects, :comments, :posts
def test_extension_on_has_many
assert_equal comments(:more_greetings), posts(:welcome).comments.find_most_recent