test/test_helper.rb in data_seeder-1.0.9 vs test/test_helper.rb in data_seeder-1.1.0
- old
+ new
@@ -1,14 +1,14 @@
-ENV["RAILS_ENV"] = "test"
+ENV["RAILS_ENV"] ||= "test"
+require_relative "dummy/config/environment"
-require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
-#ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)]
-#ActiveRecord::Migrator.migrations_paths << File.expand_path('../../db/migrate', __FILE__)
+# Needed for Dummy test app
+require "minitest/autorun"
require "rails/test_help"
-require "minitest/rails"
# Filter out Minitest backtrace while allowing backtrace from other libraries
# to be shown.
Minitest.backtrace_filter = Minitest::BacktraceFilter.new
+Rails.backtrace_cleaner.remove_silencers!
ActiveRecord::Migration.maintain_test_schema!
-support_dir =
+
Dir[File.expand_path('../support/**/*.rb', __FILE__)].each { |f| require f }