Sha256: a067164b5449dc7325c39d70d1cbe93c9f187e8d4b9c917143157d7eea57080e

Contents?: true

Size: 596 Bytes

Versions: 19

Compression:

Stored size: 596 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'
require 'minitest/spec'
require 'minitest/rails'
require 'minitest/unit'
require 'minitest/autorun'
require 'minitest/pride'
require 'pry'

Rails.backtrace_cleaner.remove_silencers!

# Load support files
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
clark_kent-0.7.1 test/test_helper.rb
clark_kent-0.7.0 test/test_helper.rb
clark_kent-0.6.1 test/test_helper.rb
clark_kent-0.6.0 test/test_helper.rb
clark_kent-0.5.0 test/test_helper.rb
clark_kent-0.4.4 test/test_helper.rb
clark_kent-0.4.3 test/test_helper.rb
clark_kent-0.4.2 test/test_helper.rb
clark_kent-0.4.1 test/test_helper.rb
clark_kent-0.4.0 test/test_helper.rb
clark_kent-0.3.2 test/test_helper.rb
clark_kent-0.3.1 test/test_helper.rb
clark_kent-0.3.0 test/test_helper.rb
clark_kent-0.2.10 test/test_helper.rb
clark_kent-0.2.8 test/test_helper.rb
clark_kent-0.2.7 test/test_helper.rb
clark_kent-0.2.6 test/test_helper.rb
clark_kent-0.2.5 test/test_helper.rb
clark_kent-0.2.4 test/test_helper.rb