diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2013-03-21 16:42:37 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2013-03-21 16:42:37 -0700 |
commit | a7391f58a0189474ef93ae89541fa34f6333e786 (patch) | |
tree | 60f7161c3c45408cbb514c27b9a4f0faafe60ec3 /activerecord/test | |
parent | ecfdc842a58816540e7c96a913f95a0d94be7ca7 (diff) | |
parent | 018fc5fc071d718f6fd1a0237996eeeec7d79e65 (diff) | |
download | rails-a7391f58a0189474ef93ae89541fa34f6333e786.tar.gz rails-a7391f58a0189474ef93ae89541fa34f6333e786.tar.bz2 rails-a7391f58a0189474ef93ae89541fa34f6333e786.zip |
Merge pull request #9861 from pivotalcommon/master
Allow fixture_path to be a Pathname
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/fixtures_test.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/activerecord/test/cases/fixtures_test.rb b/activerecord/test/cases/fixtures_test.rb index 8ad40ec3f4..f6cfee0cb8 100644 --- a/activerecord/test/cases/fixtures_test.rb +++ b/activerecord/test/cases/fixtures_test.rb @@ -576,6 +576,15 @@ class LoadAllFixturesTest < ActiveRecord::TestCase end end +class LoadAllFixturesWithPathnameTest < ActiveRecord::TestCase + self.fixture_path = Pathname.new(FIXTURES_ROOT).join('all') + fixtures :all + + def test_all_there + assert_equal %w(developers people tasks), fixture_table_names.sort + end +end + class FasterFixturesTest < ActiveRecord::TestCase fixtures :categories, :authors |