Sha256: 0d78d2b12bd5335d06a701ab0ead517e93b46ccd72a262e6d35335d51c34e80a

Contents?: true

Size: 710 Bytes

Versions: 18

Compression:

Stored size: 710 Bytes

Contents

# frozen_string_literal: true

# this file is automatically required when you run `assert`
# put any test helpers here

# add the root dir to the load path
$LOAD_PATH.unshift(File.expand_path("..", __dir__))
TEST_SUPPORT_PATH = File.expand_path("support", __dir__)

# require pry for debugging (`binding.pry`)
require "pry"

require "test/support/factory"

ENV["RAILS_ENV"] ||= "test"

require "rails"
require "action_mailer/railtie"

module TestRails
  class Application < Rails::Application
    # Initialize configuration defaults for originally generated Rails version.
    config.load_defaults 6.1

    config.eager_load = false
  end
end

# Initialize the Rails application.
Rails.application.initialize!

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
much-rails-0.4.3 test/helper.rb
much-rails-0.4.2 test/helper.rb
much-rails-0.4.1 test/helper.rb
much-rails-0.4.0 test/helper.rb
much-rails-0.3.0 test/helper.rb
much-rails-0.2.8 test/helper.rb
much-rails-0.2.7 test/helper.rb
much-rails-0.2.6 test/helper.rb
much-rails-0.2.5 test/helper.rb
much-rails-0.2.4 test/helper.rb
much-rails-0.2.3 test/helper.rb
much-rails-0.2.2 test/helper.rb
much-rails-0.2.1 test/helper.rb
much-rails-0.2.0 test/helper.rb
much-rails-0.1.3 test/helper.rb
much-rails-0.1.2 test/helper.rb
much-rails-0.1.1 test/helper.rb
much-rails-0.1.0 test/helper.rb