Sha256: c95b81a3732ff2270d60f13220df66d607c8eb0efc6a3a3a7c0f23cda0a24501

Contents?: true

Size: 597 Bytes

Versions: 10

Compression:

Stored size: 597 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/unit'
require 'minitest/autorun'
require 'minitest/pride'

Rails.backtrace_cleaner.remove_silencers!

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

class ActiveSupport::TestCase
  extend MiniTest::Spec::DSL
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
clark_kent-0.2.2 test/test_helper.rb
clark_kent-0.2.1 test/test_helper.rb
clark_kent-0.2.0 test/test_helper.rb
clark_kent-0.1.7 test/test_helper.rb
clark_kent-0.1.6 test/test_helper.rb
clark_kent-0.1.5 test/test_helper.rb
clark_kent-0.1.4 test/test_helper.rb
clark_kent-0.1.3 test/test_helper.rb
clark_kent-0.1.2 test/test_helper.rb
clark_kent-0.1.1 test/test_helper.rb