2007-03-30 04:36:52 +00:00
|
|
|
ENV["RAILS_ENV"] = "test"
|
2012-04-05 10:43:56 +02:00
|
|
|
require File.expand_path('../../config/environment', __FILE__)
|
|
|
|
|
require 'rails/test_help'
|
2007-05-25 19:01:08 +00:00
|
|
|
|
2009-06-02 21:22:50 +02:00
|
|
|
class ActiveSupport::TestCase
|
2012-04-05 10:43:56 +02:00
|
|
|
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
|
2007-03-30 04:36:52 +00:00
|
|
|
#
|
2012-04-05 10:43:56 +02:00
|
|
|
# Note: You'll currently still have to declare fixtures explicitly in integration tests
|
|
|
|
|
# -- they do not yet inherit this setting
|
|
|
|
|
fixtures :all
|
2011-08-19 12:51:06 +02:00
|
|
|
|
2012-04-05 10:43:56 +02:00
|
|
|
# Add more helper methods to be used by all tests here...
|
2009-05-25 20:30:20 +02:00
|
|
|
end
|