27 lines
767 B
Ruby
27 lines
767 B
Ruby
ENV['RAILS_ENV'] ||= 'test'
|
|
|
|
# https://github.com/colszowka/simplecov
|
|
require 'simplecov'
|
|
SimpleCov.start 'rails' do
|
|
add_group 'Models', %w(app/models app/validators)
|
|
add_group 'PORO', %w(app/services)
|
|
end
|
|
|
|
require File.expand_path('../../config/environment', __FILE__)
|
|
require 'rails/test_help'
|
|
require "minitest/autorun"
|
|
require 'minitest/reporters'
|
|
require 'webmock/minitest'
|
|
Dir[Rails.root.join("test/test_helpers/**/*.rb")].each { |f| require f }
|
|
|
|
WebMock.disable_net_connect!(allow_localhost: true)
|
|
|
|
Minitest::Reporters.use! [Minitest::Reporters::DefaultReporter.new(color: true)]
|
|
|
|
class ActiveSupport::TestCase
|
|
ActiveRecord::Migration.check_pending!
|
|
|
|
# Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
|
|
fixtures :all
|
|
end
|