1 ENV['RAILS_ENV'] ||= 'test'
2 require File.expand_path('../../config/environment', __FILE__)
3 require 'rails/test_help'
5 class ActiveSupport::TestCase
6 # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
8 # Transactional fixtures accelerate your tests by wrapping each test method
9 # in a transaction that's rolled back on completion. This ensures that the
10 # test database remains unchanged so your fixtures don't have to be reloaded
11 # between every test method. Fewer database queries means faster tests.
13 # Read Mike Clark's excellent walkthrough at
14 # http://clarkware.com/cgi/blosxom/2005/10/24#Rails10FastTesting
16 # Every Active Record database supports transactions except MyISAM tables
17 # in MySQL. Turn off transactional fixtures in this case; however, if you
18 # don't care one way or the other, switching from MyISAM to InnoDB tables
21 # The only drawback to using transactional fixtures is when you actually
22 # need to test transactions. Since your test is bracketed by a transaction,
23 # any transactions started in your code will be automatically rolled back.
24 self.use_transactional_tests = false
26 # Instantiated fixtures are slow, but give you @david where otherwise you
27 # would need people(:david). If you don't want to migrate your existing
28 # test cases which use the @david style and don't mind the speed hit (each
29 # instantiated fixtures translates to a database query per test method),
30 # then set this back to true.
31 self.use_instantiated_fixtures = false
33 # Add more helper methods to be used by all tests here...