Sha256: 9511852543f3abce81ae9302d81ddc765a1437ce0def5fcb59403cc4d2e39c96
Contents?: true
Size: 761 Bytes
Versions: 6
Compression:
Stored size: 761 Bytes
Contents
# frozen_string_literal: true # Code climate require 'simplecov' SimpleCov.start 'rails' # Configure Rails Environment ENV['RAILS_ENV'] = 'test' require File.expand_path('../test/dummy/config/environment.rb', __dir__) ActiveRecord::Migrator.migrations_paths = [File.expand_path('../test/dummy/db/migrate', __dir__)] require 'rails/test_help' # Filter out Minitest backtrace while allowing backtrace from other libraries # to be shown. Minitest.backtrace_filter = Minitest::BacktraceFilter.new # Load support files Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].sort.each { |f| require f } # Load fixtures from the engine ActiveSupport::TestCase.fixture_path = File.expand_path('fixtures', __dir__) if ActiveSupport::TestCase.respond_to?(:fixture_path=)
Version data entries
6 entries across 6 versions & 1 rubygems