Sha256: feefc7d20018a8865a9c77f11431e22c616da6600241d1a99c5452b4c22a0b99

Contents?: true

Size: 667 Bytes

Versions: 2

Compression:

Stored size: 667 Bytes

Contents

# frozen_string_literal: true

ENV['RAILS_ENV'] = 'test'

require_relative '../test/dummy/config/environment'
ActiveRecord::Migrator.migrations_paths = [File.expand_path(
  '../test/dummy/db/migrate', __dir__
)]
require 'rails/test_help'

# Load fixtures from the engine
if ActiveSupport::TestCase.respond_to?(:fixture_path=)
  ActiveSupport::TestCase.fixture_path = File.expand_path('fixtures', __dir__)
  ActionDispatch::IntegrationTest.fixture_path =
    ActiveSupport::TestCase.fixture_path
  ActiveSupport::TestCase.file_fixture_path =
    "#{ActiveSupport::TestCase.fixture_path}/files"
  ActiveSupport::TestCase.fixtures(:all)
end

Warning[:deprecated] = true

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
upgrow-0.0.5 test/rails_helper.rb
upgrow-0.0.4 test/rails_helper.rb