Sha256: 11fadba375dc8968afda7e74491ffced7ab523087aee1124ead694bb8ab29f9f

Contents?: true

Size: 1.43 KB

Versions: 15

Compression:

Stored size: 1.43 KB

Contents

# frozen_string_literal: true

# Make double-sure the RAILS_ENV is not set to production,
# so fixtures aren't loaded into that environment
abort("Abort testing: Your Rails environment is running in production mode!") if Rails.env.production?

require "active_support/test_case"
require "action_controller"
require "action_controller/test_case"
require "action_dispatch/testing/integration"
require "rails/generators/test_case"

require "active_support/testing/autorun"

if defined?(ActiveRecord::Base)
  begin
    ActiveRecord::Migration.maintain_test_schema!
  rescue ActiveRecord::PendingMigrationError => e
    puts e.to_s.strip
    exit 1
  end

  ActiveSupport.on_load(:active_support_test_case) do
    include ActiveRecord::TestDatabases
    include ActiveRecord::TestFixtures

    self.fixture_path = "#{Rails.root}/test/fixtures/"
    self.file_fixture_path = fixture_path + "files"
  end

  ActiveSupport.on_load(:action_dispatch_integration_test) do
    self.fixture_path = ActiveSupport::TestCase.fixture_path
  end
else
  ActiveSupport.on_load(:active_support_test_case) do
    self.file_fixture_path = "#{Rails.root}/test/fixtures/files"
  end
end

# :enddoc:

ActiveSupport.on_load(:action_controller_test_case) do
  def before_setup # :nodoc:
    @routes = Rails.application.routes
    super
  end
end

ActiveSupport.on_load(:action_dispatch_integration_test) do
  def before_setup # :nodoc:
    @routes = Rails.application.routes
    super
  end
end

Version data entries

15 entries across 15 versions & 3 rubygems

Version Path
railties-7.0.8.6 lib/rails/test_help.rb
railties-7.0.8.5 lib/rails/test_help.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/railties-7.0.8.4/lib/rails/test_help.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/railties-7.0.5.1/lib/rails/test_help.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/railties-7.0.5.1/lib/rails/test_help.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/railties-7.0.5.1/lib/rails/test_help.rb
railties-7.0.8.4 lib/rails/test_help.rb
railties-7.0.8.1 lib/rails/test_help.rb
railties-7.0.8 lib/rails/test_help.rb
railties-7.0.7.2 lib/rails/test_help.rb
railties-7.0.7.1 lib/rails/test_help.rb
railties-7.0.7 lib/rails/test_help.rb
railties-7.0.6 lib/rails/test_help.rb
railties-7.0.5.1 lib/rails/test_help.rb
railties-7.0.5 lib/rails/test_help.rb