Made it even easier to turn on transactional fixtures

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1657 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2005-07-04 09:24:31 +00:00
parent c570ebc143
commit e04e82ba82
1 changed files with 8 additions and 0 deletions

View File

@ -16,3 +16,11 @@ def create_fixtures(*table_names)
end
Test::Unit::TestCase.fixture_path = File.dirname(__FILE__) + "/fixtures/"
class Test::Unit::TestCase
# Turn these on to use transactional fixtures with table_name(:fixture_name) instantiation of fixtures
# self.use_transactional_fixtures = true
# self.use_instantiated_fixtures = false
# Add helper methods to be used by all tests here
end