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

Version Path
clark_kent-0.11.3 test/test_helper.rb
clark_kent-0.11.2 test/test_helper.rb
clark_kent-0.11.1 test/test_helper.rb
clark_kent-0.11.0 test/test_helper.rb
clark_kent-0.10.4 test/test_helper.rb
clark_kent-0.10.2 test/test_helper.rb
clark_kent-0.10.1 test/test_helper.rb
clark_kent-0.10.0 test/test_helper.rb
clark_kent-0.9.9 test/test_helper.rb
clark_kent-0.9.8 test/test_helper.rb
clark_kent-0.9.7 test/test_helper.rb
clark_kent-0.9.6 test/test_helper.rb
clark_kent-0.9.5 test/test_helper.rb
clark_kent-0.9.4 test/test_helper.rb
clark_kent-0.9.2 test/test_helper.rb