From d67e82473e80e04013077c18270ded165659cc67 Mon Sep 17 00:00:00 2001 From: Mike Perham Date: Tue, 5 Feb 2019 11:10:56 -0800 Subject: [PATCH] remove things which complicate the test suite --- Gemfile | 2 -- test/dummy/config/application.rb | 4 ---- test/helper.rb | 3 --- 3 files changed, 9 deletions(-) diff --git a/Gemfile b/Gemfile index c075c91e..fcd1d856 100644 --- a/Gemfile +++ b/Gemfile @@ -14,8 +14,6 @@ end group :test do gem 'minitest' - gem 'minitest-focus' - gem 'minitest-reporters' gem 'simplecov' end diff --git a/test/dummy/config/application.rb b/test/dummy/config/application.rb index 5c73c4ca..c7a9d5d6 100644 --- a/test/dummy/config/application.rb +++ b/test/dummy/config/application.rb @@ -7,9 +7,5 @@ module Dummy config.root = File.expand_path("../..", __FILE__) config.eager_load = false config.logger = Logger.new('/dev/null') - - if Rails::VERSION::MAJOR >= 5 - config.active_record.sqlite3.represent_boolean_as_integer = true - end end end diff --git a/test/helper.rb b/test/helper.rb index da80a46a..f8fd467c 100644 --- a/test/helper.rb +++ b/test/helper.rb @@ -3,11 +3,8 @@ require 'bundler/setup' Bundler.require(:default, :test) -require 'minitest/reporters' require 'minitest/autorun' -MiniTest::Reporters.use! Minitest::Reporters::DefaultReporter.new - $TESTING = true # disable minitest/parallel threads ENV["N"] = "0"