Sha256: f4a2291698cd1ee36d4a4e1b76c6867f4812120972fd867816a5daac61a5ca48
Contents?: true
Size: 620 Bytes
Versions: 13
Compression:
Stored size: 620 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 < ActionController::TestCase #custom controller test config here end
Version data entries
13 entries across 13 versions & 1 rubygems