提交 a7391f58 编写于 作者: J Jeremy Kemper

Merge pull request #9861 from pivotalcommon/master

Allow fixture_path to be a Pathname
......@@ -752,7 +752,7 @@ def set_fixture_class(class_names = {})
def fixtures(*fixture_set_names)
if fixture_set_names.first == :all
fixture_set_names = Dir["#{fixture_path}/**/*.{yml}"]
fixture_set_names.map! { |f| f[(fixture_path.size + 1)..-5] }
fixture_set_names.map! { |f| f[(fixture_path.to_s.size + 1)..-5] }
else
fixture_set_names = fixture_set_names.flatten.map { |n| n.to_s }
end
......
......@@ -576,6 +576,15 @@ def test_all_there
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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册