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

Version Path
clark_kent-0.9.1 test/test_helper.rb
clark_kent-0.9.0 test/test_helper.rb
clark_kent-0.8.11 test/test_helper.rb
clark_kent-0.8.10 test/test_helper.rb
clark_kent-0.8.9 test/test_helper.rb
clark_kent-0.8.8 test/test_helper.rb
clark_kent-0.8.7 test/test_helper.rb
clark_kent-0.8.6 test/test_helper.rb
clark_kent-0.8.5 test/test_helper.rb
clark_kent-0.8.4 test/test_helper.rb
clark_kent-0.8.3 test/test_helper.rb
clark_kent-0.8.2 test/test_helper.rb
clark_kent-0.8.1 test/test_helper.rb