Sha256: b41806de55ae5f34399412c7a730d493e45b19f29f7db0d435b1722f93be4be6
Contents?: true
Size: 833 Bytes
Versions: 3
Compression:
Stored size: 833 Bytes
Contents
# Set up Codeclimate. require "codeclimate-test-reporter" CodeClimate::TestReporter.start # Configure Rails Environment ENV["RAILS_ENV"] = "test" ENV["BUNDLE_GEMFILE"] = File.expand_path("../../Gemfile", __FILE__) require File.expand_path("../../test/dummy/config/environment.rb", __FILE__) require "rails/test_help" require "mocha" require "mocha/mini_test" require "minitest/utils" require "minitest/autorun" # 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
test_squad-0.1.2 | test/test_helper.rb |
test_squad-0.1.1 | test/test_helper.rb |
test_squad-0.1.0 | test/test_helper.rb |