From 383f69c0b733a41dfd33bd7ed7367dabd2771bba Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Thu, 23 Apr 2015 17:21:35 +0200 Subject: [PATCH] test_helper got updated automatically --- test/test_helper.rb | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/test/test_helper.rb b/test/test_helper.rb index bc7e05d..18b9705 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,11 +1,19 @@ -ENV["RAILS_ENV"] ||= "test" -require File.expand_path('../../config/environment', __FILE__) -require 'rails/test_help' +ENV["RAILS_ENV"] = "test" +require File.expand_path("../../config/environment", __FILE__) +require "rails/test_help" +#require "minitest/rails" + +# To add Capybara feature tests add `gem "minitest-rails-capybara"` +# to the test group in the Gemfile and uncomment the following: +# require "minitest/rails/capybara" + +# Uncomment for awesome colorful output +# require "minitest/pride" class ActiveSupport::TestCase - ActiveRecord::Migration.check_pending! + ActiveRecord::Migration.check_pending! - # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. + # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order. # # Note: You'll currently still have to declare fixtures explicitly in integration tests # -- they do not yet inherit this setting