aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_helper.rb
diff options
context:
space:
mode:
authorSam Stephenson <sam@37signals.com>2018-02-08 11:01:46 -0600
committerSam Stephenson <sam@37signals.com>2018-02-08 11:01:46 -0600
commit38e1f12d79ec3313e42643e52f2d10cb5fbd5d5d (patch)
treee62eb8fa577c1c27820bcf8fef5b07b0c1a6085d /test/test_helper.rb
parent68d350ddacedf604717f0d1074d7624fa57757c2 (diff)
downloadrails-38e1f12d79ec3313e42643e52f2d10cb5fbd5d5d.tar.gz
rails-38e1f12d79ec3313e42643e52f2d10cb5fbd5d5d.tar.bz2
rails-38e1f12d79ec3313e42643e52f2d10cb5fbd5d5d.zip
Add dummy app
Diffstat (limited to 'test/test_helper.rb')
-rw-r--r--test/test_helper.rb25
1 files changed, 21 insertions, 4 deletions
diff --git a/test/test_helper.rb b/test/test_helper.rb
index 7ea27bb507..94fec6b8be 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -1,4 +1,21 @@
-require "bundler/setup"
-require "active_support"
-require "active_support/test_case"
-require "active_support/testing/autorun"
+# Configure Rails Environment
+ENV["RAILS_ENV"] = "test"
+
+require_relative "../test/dummy/config/environment"
+ActiveRecord::Migrator.migrations_paths = [File.expand_path("../test/dummy/db/migrate", __dir__)]
+require "rails/test_help"
+
+# Filter out Minitest backtrace while allowing backtrace from other libraries
+# to be shown.
+Minitest.backtrace_filter = Minitest::BacktraceFilter.new
+
+require "rails/test_unit/reporter"
+Rails::TestUnitReporter.executable = 'bin/test'
+
+# Load fixtures from the engine
+if ActiveSupport::TestCase.respond_to?(:fixture_path=)
+ ActiveSupport::TestCase.fixture_path = File.expand_path("fixtures", __dir__)
+ ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
+ ActiveSupport::TestCase.file_fixture_path = ActiveSupport::TestCase.fixture_path + "/files"
+ ActiveSupport::TestCase.fixtures :all
+end