annotate test/test_helper.rb @ 366:26545fe719ca
Remove caching system.
Too much complexity for something that is really simple.
author |
edogawaconan <me@myconan.net> |
date |
Sat, 14 Feb 2015 01:35:45 +0900 |
parents |
7c7b7906ebd9 |
children |
92929378413e |
rev |
line source |
292
|
1 ENV["RAILS_ENV"] ||= "test"
|
331
|
2 require File.expand_path("../../config/environment", __FILE__)
|
|
3 require "rails/test_help"
|
292
|
4
|
|
5 class ActiveSupport::TestCase
|
|
6 ActiveRecord::Migration.check_pending!
|
|
7
|
|
8 # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
|
|
9 #
|
|
10 # Note: You'll currently still have to declare fixtures explicitly in integration tests
|
|
11 # -- they do not yet inherit this setting
|
|
12 fixtures :all
|
|
13
|
|
14 # Add more helper methods to be used by all tests here...
|
|
15 end
|