Sha256: f1540c960e32759c3172979cb391e62ac8bb929c1698d5f528b149bacf1add20

Contents?: true

Size: 893 Bytes

Versions: 7

Compression:

Stored size: 893 Bytes

Contents

# frozen_string_literal: true

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

require File.expand_path('../../test/dummy/config/environment.rb', __FILE__)
ActiveRecord::Migrator.migrations_paths = [File.expand_path('../../test/dummy/db/migrate', __FILE__)]
ActiveRecord::Migrator.migrations_paths << File.expand_path('../../db/migrate', __FILE__)
require 'rails/test_help'
require 'minitest/autorun'

# 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 }

# Load fixtures from the engine
ActiveSupport::TestCase.fixture_path = File.expand_path('../fixtures', __FILE__)
ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
ActiveSupport::TestCase.fixtures :all

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
sublease-0.3.0 test/test_helper.rb
sublease-0.2.3 test/test_helper.rb
sublease-0.2.2 test/test_helper.rb
sublease-0.2.1 test/test_helper.rb
sublease-0.2.0 test/test_helper.rb
sublease-0.1.1 test/test_helper.rb
sublease-0.1.0 test/test_helper.rb