Sha256: dcec0efa01e66e9880918288f49f8586004b55e5b442ca8c6852bd5e17622fa3

Contents?: true

Size: 650 Bytes

Versions: 4

Compression:

Stored size: 650 Bytes

Contents

# Configure Rails Environment
ENV["RAILS_ENV"] = "test"
require "codeclimate-test-reporter"
CodeClimate::TestReporter.start

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__)
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
simplificator_infrastructure-0.1.1 test/test_helper.rb
simplificator_infrastructure-0.1.0 test/test_helper.rb
simplificator_infrastructure-0.0.11 test/test_helper.rb
simplificator_infrastructure-0.0.10 test/test_helper.rb