Sha256: b7db5719390817be9adb137a4ea85bc0b83d30cb699ffb4ec83216832fd392bf

Contents?: true

Size: 737 Bytes

Versions: 9

Compression:

Stored size: 737 Bytes

Contents

# frozen_string_literal: true
# Configure Rails Environment
ENV['RAILS_ENV'] = 'test'

require File.expand_path('../../test/dummy/config/environment.rb', __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__)
  ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
  ActiveSupport::TestCase.fixtures :all
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
europeana-logging-0.2.6 test/test_helper.rb
europeana-logging-0.2.5 test/test_helper.rb
europeana-logging-0.2.4 test/test_helper.rb
europeana-logging-0.2.3 test/test_helper.rb
europeana-logging-0.2.2 test/test_helper.rb
europeana-logging-0.1.1 test/test_helper.rb
europeana-logging-0.1.0 test/test_helper.rb
europeana-logging-0.0.4 test/test_helper.rb
europeana-logging-0.0.3 test/test_helper.rb