test_helper.rb 454 B

12345678910111213
  1. ENV["RAILS_ENV"] = "test"
  2. require File.expand_path('../../config/environment', __FILE__)
  3. require 'rails/test_help'
  4. class ActiveSupport::TestCase
  5. # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
  6. #
  7. # Note: You'll currently still have to declare fixtures explicitly in integration tests
  8. # -- they do not yet inherit this setting
  9. fixtures :all
  10. # Add more helper methods to be used by all tests here...
  11. end