summary refs log tree commit diff stats
path: root/rails/test/test_helper.rb
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-12-07 21:14:52 +0000
committerStar Rauchenberger <fefferburbia@gmail.com>2023-12-07 21:14:52 +0000
commit295dd1906a98913275145c5b9cc403f1e76cfd33 (patch)
treef45d7721c9a138b743ada905a12596f050a7473d /rails/test/test_helper.rb
parent460edd4191229635e86c0e3781a361126c140ca9 (diff)
parenta37605e3d7d17e322a9cf2a497768f6fd8b5d0a3 (diff)
downloadlingo-295dd1906a98913275145c5b9cc403f1e76cfd33.tar.gz
lingo-295dd1906a98913275145c5b9cc403f1e76cfd33.tar.bz2
lingo-295dd1906a98913275145c5b9cc403f1e76cfd33.zip
Merge branch 'main' of /srv/git/lingo into main
Diffstat (limited to 'rails/test/test_helper.rb')
-rw-r--r--rails/test/test_helper.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/rails/test/test_helper.rb b/rails/test/test_helper.rb deleted file mode 100644 index 7230d9c..0000000 --- a/rails/test/test_helper.rb +++ /dev/null
@@ -1,15 +0,0 @@
1# Configure Rails Environment
2ENV["RAILS_ENV"] = "test"
3
4require_relative "../test/dummy/config/environment"
5ActiveRecord::Migrator.migrations_paths = [File.expand_path("../test/dummy/db/migrate", __dir__)]
6ActiveRecord::Migrator.migrations_paths << File.expand_path("../db/migrate", __dir__)
7require "rails/test_help"
8
9# Load fixtures from the engine
10if ActiveSupport::TestCase.respond_to?(:fixture_path=)
11 ActiveSupport::TestCase.fixture_path = File.expand_path("fixtures", __dir__)
12 ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
13 ActiveSupport::TestCase.file_fixture_path = ActiveSupport::TestCase.fixture_path + "/files"
14 ActiveSupport::TestCase.fixtures :all
15end