Sha256: 7f4a3dcf95ad334afa30f653c6397dbdc17c173118031c2aad5d4eec2e5f67d2
Contents?: true
Size: 624 Bytes
Versions: 4
Compression:
Stored size: 624 Bytes
Contents
# 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" # 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
Version data entries
4 entries across 4 versions & 2 rubygems
Version | Path |
---|---|
simple_calendar-3.0.2 | test/test_helper.rb |
simple_calendar-3.0.1 | test/test_helper.rb |
simple_calendar-3.0.0 | test/test_helper.rb |
ddd_domain-1.3.0 | test/test_helper.rb |