debshots/test/test_helper.rb
Christoph Haas 2700289ff8 Capybara test initializer removed
Apparently "system tests" are a better way to handle them.
2020-10-30 16:38:38 +01:00

21 lines
515 B
Ruby

ENV['RAILS_ENV'] ||= 'test'
require File.expand_path("../../config/environment", __FILE__)
require "rails/test_help"
require "minitest/reporters"
Minitest::Reporters.use!
# require "minitest/rails"
# require "minitest/autorun"
# Uncomment for awesome colorful output
require "minitest/pride"
class ActiveSupport::TestCase
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
fixtures :all
end
class ActionController::TestCase
include Devise::Test::ControllerHelpers
end