skill-assessment-app/test/test_helper.rb

17 lines
492 B
Ruby
Raw Normal View History

2016-07-26 11:59:23 -05:00
ENV['RAILS_ENV'] ||= 'test'
2016-07-27 11:17:50 -05:00
2016-07-26 11:59:23 -05:00
require File.expand_path('../../config/environment', __FILE__)
require 'rails/test_help'
2016-07-26 18:43:27 -05:00
require "minitest/autorun"
require 'minitest/reporters'
Minitest::Reporters.use! [Minitest::Reporters::DefaultReporter.new(color: true)]
2016-07-26 11:59:23 -05:00
class ActiveSupport::TestCase
2016-07-26 18:43:27 -05:00
ActiveRecord::Migration.check_pending!
2016-07-26 11:59:23 -05:00
# Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
fixtures :all
# Add more helper methods to be used by all tests here...
end