Remove duplication in test_help.rb Closes #3328 [jarkko]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7395 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Michael Koziarski 2007-09-02 23:50:51 +00:00
parent ed09b621bd
commit 2fc4be68a6
1 changed files with 1 additions and 1 deletions

View File

@ -13,5 +13,5 @@ Test::Unit::TestCase.fixture_path = RAILS_ROOT + "/test/fixtures/"
ActionController::IntegrationTest.fixture_path = Test::Unit::TestCase.fixture_path
def create_fixtures(*table_names)
Fixtures.create_fixtures(RAILS_ROOT + "/test/fixtures", table_names)
Fixtures.create_fixtures(Test::Unit::TestCase.fixture_path, table_names)
end