aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xactiverecord/test/associations_test.rb3
-rw-r--r--activerecord/test/finder_test.rb2
2 files changed, 2 insertions, 3 deletions
diff --git a/activerecord/test/associations_test.rb b/activerecord/test/associations_test.rb
index 0dad144199..fe2a720c32 100755
--- a/activerecord/test/associations_test.rb
+++ b/activerecord/test/associations_test.rb
@@ -14,7 +14,6 @@ require 'fixtures/author'
require 'fixtures/tag'
require 'fixtures/tagging'
-
class AssociationsTest < Test::Unit::TestCase
fixtures :accounts, :companies, :developers, :projects, :developers_projects,
:computers
@@ -1034,7 +1033,7 @@ end
class BelongsToAssociationsTest < Test::Unit::TestCase
fixtures :accounts, :companies, :developers, :projects, :topics,
- :developers_projects, :computers, :authors, :posts
+ :developers_projects, :computers, :authors, :posts, :tags, :taggings
def test_belongs_to
Client.find(3).firm.name
diff --git a/activerecord/test/finder_test.rb b/activerecord/test/finder_test.rb
index bee7c23025..fbd9001297 100644
--- a/activerecord/test/finder_test.rb
+++ b/activerecord/test/finder_test.rb
@@ -7,7 +7,7 @@ require 'fixtures/developer'
require 'fixtures/post'
class FinderTest < Test::Unit::TestCase
- fixtures :companies, :topics, :entrants, :developers, :developers_projects, :posts, :accounts
+ fixtures :companies, :topics, :entrants, :developers, :developers_projects, :posts, :comments, :accounts
def test_find
assert_equal(topics(:first).title, Topic.find(1).title)