Sha256: a288a73bd774861beb122da8ff28d6b59ad1f347514f7c395f32d4652effc507

Contents?: true

Size: 493 Bytes

Versions: 3

Compression:

Stored size: 493 Bytes

Contents

# Configure Rails Environment
ENV['RAILS_ENV'] = 'test'

require File.expand_path('../dummy/config/environment.rb',  __FILE__)
ActiveRecord::Migrator.migrations_paths = [File.expand_path('../dummy/db/migrate', __FILE__)]
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"].each { |f| require f }

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
cachers-4.0.0.0 test/test_helper.rb
slugs-2.0.1 test/test_helper.rb
slugs-2.0.0 test/test_helper.rb