Sha256: f151b96312092e750d749eb5b11611579f3207e733a6c096471cdcb57e48edf8

Contents?: true

Size: 814 Bytes

Versions: 764

Compression:

Stored size: 814 Bytes

Contents

# Configure Rails Environment
ENV["RAILS_ENV"] = "test"

require File.expand_path("../../test/dummy/config/environment.rb",  __FILE__)
ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)]
ActiveRecord::Migrator.migrations_paths << File.expand_path('../../db/migrate', __FILE__)
require "rails/test_help"

# Filter out Minitest backtrace while allowing backtrace from other libraries
# to be shown.
Minitest.backtrace_filter = Minitest::BacktraceFilter.new

# Load support files
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }

# Load fixtures from the engine
if ActiveSupport::TestCase.respond_to?(:fixture_path=)
  ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
  ActiveSupport::TestCase.fixtures :all
end

Version data entries

764 entries across 764 versions & 46 rubygems

Version Path
forest_liana-9.11.1 test/test_helper.rb
forest_liana-9.11.0 test/test_helper.rb
forest_liana-9.10.6 test/test_helper.rb
forest_liana-9.10.5 test/test_helper.rb
forest_liana-9.10.4 test/test_helper.rb
forest_liana-9.10.3 test/test_helper.rb
forest_liana-9.10.2 test/test_helper.rb
forest_liana-9.10.1 test/test_helper.rb
forest_liana-9.10.0 test/test_helper.rb
forest_liana-9.9.1 test/test_helper.rb
forest_liana-9.9.0 test/test_helper.rb
forest_liana-9.8.0 test/test_helper.rb
forest_liana-9.7.0 test/test_helper.rb
forest_liana-9.6.4 test/test_helper.rb
forest_liana-9.6.3 test/test_helper.rb
forest_liana-9.6.0 test/test_helper.rb
forest_liana-9.5.7 test/test_helper.rb
forest_liana-9.5.6 test/test_helper.rb
forest_liana-9.5.5 test/test_helper.rb
forest_liana-9.5.4 test/test_helper.rb