Sha256: ff6eb9c064e3190f2845c44c1a10044b91c50ba05c6953663b9dabc6adaeeb4b
Contents?: true
Size: 625 Bytes
Versions: 15
Compression:
Stored size: 625 Bytes
Contents
# Configure Rails Environment ENV["RAILS_ENV"] = "test" require File.expand_path("../../test/dummy/config/environment.rb", __FILE__) ActiveRecord::Migrator.migrations_paths << File.expand_path('../../db/migrate', __FILE__) # ActiveRecord::Migration.maintain_test_schema! require "rails/test_help" require 'minitest/spec' require 'minitest/rails' require 'minitest/pride' require 'pry' Rails.backtrace_cleaner.remove_silencers! # Load support files Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f } class ControllerTest < ActionDispatch::IntegrationTest #custom controller test config here end
Version data entries
15 entries across 15 versions & 1 rubygems