Sha256: 9b105545995c0419d1475c7d3ef997e02371c150d2854ec73cb410d87160fb9d

Contents?: true

Size: 707 Bytes

Versions: 15

Compression:

Stored size: 707 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"
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

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
rails_twirp-0.13.2 test/test_helper.rb
rails_twirp-0.13.0 test/test_helper.rb
rails_twirp-0.12.0 test/test_helper.rb
rails_twirp-0.11.0 test/test_helper.rb
rails_twirp-0.10.0 test/test_helper.rb
rails_twirp-0.9.1 test/test_helper.rb
rails_twirp-0.9.0 test/test_helper.rb
rails_twirp-0.8.0 test/test_helper.rb
rails_twirp-0.7.2 test/test_helper.rb
rails_twirp-0.7.1 test/test_helper.rb
rails_twirp-0.7.0 test/test_helper.rb
rails_twirp-0.6.0 test/test_helper.rb
rails_twirp-0.5.0 test/test_helper.rb
rails_twirp-0.4.0 test/test_helper.rb
rails_twirp-0.3.0 test/test_helper.rb