aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-17 19:36:44 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-17 19:36:44 +0000
commit060b9b16aa4104858c13e4fd467b05c8e4fda127 (patch)
treee03e995f2b19d61f2d883bea9951fbd609c129c5 /activerecord
parent78a732bf3ffaab0788c2962d03a059b3a8324a5f (diff)
downloadrails-060b9b16aa4104858c13e4fd467b05c8e4fda127.tar.gz
rails-060b9b16aa4104858c13e4fd467b05c8e4fda127.tar.bz2
rails-060b9b16aa4104858c13e4fd467b05c8e4fda127.zip
Added the possibility of specifying fixtures in multiple calls #816 [kim@tinker.com]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@915 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG2
-rwxr-xr-xactiverecord/lib/active_record/fixtures.rb2
-rwxr-xr-xactiverecord/test/fixtures_test.rb20
3 files changed, 23 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 4f8204821c..4bc7135995 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Added the possibility of specifying fixtures in multiple calls #816 [kim@tinker.com]
+
* Added Base.exists?(id) that'll return true if an object of the class with the given id exists #854 [stian@grytoyr.net]
* Added optionally allow for nil or empty strings with validates_numericality_of #801 [Sebastian Kanthak]
diff --git a/activerecord/lib/active_record/fixtures.rb b/activerecord/lib/active_record/fixtures.rb
index e1bfea2d07..6d3170f7bc 100755
--- a/activerecord/lib/active_record/fixtures.rb
+++ b/activerecord/lib/active_record/fixtures.rb
@@ -367,7 +367,7 @@ module Test #:nodoc:
self.use_instantiated_fixtures = true
def self.fixtures(*table_names)
- self.fixture_table_names = table_names.flatten
+ self.fixture_table_names |= table_names.flatten
require_fixture_classes
end
diff --git a/activerecord/test/fixtures_test.rb b/activerecord/test/fixtures_test.rb
index c83b4babf5..30acb945d1 100755
--- a/activerecord/test/fixtures_test.rb
+++ b/activerecord/test/fixtures_test.rb
@@ -136,3 +136,23 @@ class TransactionalFixturesTest < Test::Unit::TestCase
assert_not_nil @first
end
end
+
+
+class MultipleFixturesTest < Test::Unit::TestCase
+ fixtures :topics
+ fixtures :developers, :accounts
+
+ def test_fixture_table_names
+ assert_equal([:topics, :developers, :accounts], fixture_table_names)
+ end
+end
+
+
+class OverlappingFixturesTest < Test::Unit::TestCase
+ fixtures :topics, :developers
+ fixtures :developers, :accounts
+
+ def test_fixture_table_names
+ assert_equal([:topics, :developers, :accounts], fixture_table_names)
+ end
+end