skill-assessment-app/test/test_helper.rb

27 lines
805 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
# https://github.com/colszowka/simplecov
require 'simplecov'
SimpleCov.start 'rails' do
add_group 'Models', %w(app/models app/validators)
add_group 'Services & Workers', %w(app/workers app/services)
add_group "Jobs", 'app/jobs'
end
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'
Dir[Rails.root.join("test/test_helpers/**/*.rb")].each { |f| require f }
2016-07-26 18:43:27 -05:00
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