Sha256: b3977bb453b2664b3e5083d9fc1ac5cc59ec2c52bc656fae141b9632b84a44a7
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.3 | test/rails_helper.rb |
upgrow-0.0.2 | test/rails_helper.rb |