Sha256: 4bfa24d915f77df1927e1649aa80afcbbf5c445d4050b993130de6cf29767d04

Contents?: true

Size: 1.15 KB

Versions: 47

Compression:

Stored size: 1.15 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"

# Filter out the backtrace from minitest while preserving the one from other libraries.
Minitest.backtrace_filter = Minitest::BacktraceFilter.new

<% 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

47 entries across 45 versions & 5 rubygems

Version Path
railties-6.0.6.1 lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt
railties-6.0.6 lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt
railties-6.0.5.1 lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt
railties-6.0.5 lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt
railties-6.0.4.8 lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt
railties-6.0.4.7 lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt
railties-6.0.4.6 lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt
railties-6.0.4.5 lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt
railties-6.0.4.4 lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt
railties-6.0.4.3 lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt
railties-6.0.4.2 lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt
railties-6.0.4.1 lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt
railties-6.0.4 lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt
railties-6.0.3.7 lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt
railties-6.0.3.6 lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt
railties-6.0.3.5 lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt
railties-6.0.3.4 lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt
railties-6.0.3.3 lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt
railties-6.0.3.2 lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt
railties-6.0.3.1 lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt