about summary refs log tree commit diff stats
path: root/test/test_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_helper.rb')
-rw-r--r--test/test_helper.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 0000000..cfcfffe --- /dev/null +++ b/test/test_helper.rb
@@ -0,0 +1,17 @@
1require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
2ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)]
3ActiveRecord::Migrator.migrations_paths << File.expand_path('../../db/migrate', __FILE__)
4require "rails/test_help"
5
6# Filter out Minitest backtrace while allowing backtrace from other libraries
7# to be shown.
8Minitest.backtrace_filter = Minitest::BacktraceFilter.new
9
10
11# Load fixtures from the engine
12if ActiveSupport::TestCase.respond_to?(:fixture_path=)
13 ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
14 ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
15 ActiveSupport::TestCase.file_fixture_path = ActiveSupport::TestCase.fixture_path + "/files"
16 ActiveSupport::TestCase.fixtures :all
17end