Sha256: 1bb5473b4fcaf6b4489517e9ca0b7c6d35d149068077f9a53c73e13a2040bdfa
Contents?: true
Size: 1 KB
Versions: 5
Compression:
Stored size: 1 KB
Contents
# Configure Rails Environment ENV["RAILS_ENV"] = "test" require_relative "<%= File.join("..", options[:dummy_path], "config/environment") -%>" <% unless options[:skip_active_record] -%> ActiveRecord::Migrator.migrations_paths = [File.expand_path("../<%= options[:dummy_path] -%>/db/migrate", __dir__)] <% if options[:mountable] -%> ActiveRecord::Migrator.migrations_paths << File.expand_path("../db/migrate", __dir__) <% end -%> <% end -%> require "rails/test_help" <% unless engine? -%> require "rails/test_unit/reporter" Rails::TestUnitReporter.executable = "bin/test" <% end -%> <% unless options[:skip_active_record] -%> # 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 <% end -%>
Version data entries
5 entries across 5 versions & 1 rubygems