Sha256: b641cb9f05154af31d5b787c4a2c99d5116083eee6aa89e5560f7d33b4bb8621

Contents?: true

Size: 460 Bytes

Versions: 3

Compression:

Stored size: 460 Bytes

Contents

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

require File.expand_path('dummy/config/environment.rb', __dir__)
require 'rails/test_help'

Rails.backtrace_cleaner.remove_silencers!

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

# Load fixtures from the engine
if ActiveSupport::TestCase.method_defined?(:fixture_path=)
  ActiveSupport::TestCase.fixture_path = File.expand_path('fixtures', __dir__)
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
foreman_xen-0.7.1 test/test_helper.rb
foreman_xen-0.7.0 test/test_helper.rb
foreman_xen-0.6.1 test/test_helper.rb