Sha256: 9cddd194a4339c8defeeec7df7412dabf66bf387a4c58a45ff1cab9cbfd6a1cf
Contents?: true
Size: 1.18 KB
Versions: 40
Compression:
Stored size: 1.18 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 module ActiveSupport class TestCase include ActiveRecord::TestFixtures self.fixture_path = "#{Rails.root}/test/fixtures/" self.file_fixture_path = fixture_path + "files" end end ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path end # :enddoc: class ActionController::TestCase def before_setup # :nodoc: @routes = Rails.application.routes super end end class ActionDispatch::IntegrationTest def before_setup # :nodoc: @routes = Rails.application.routes super end end
Version data entries
40 entries across 40 versions & 3 rubygems