Sha256: 6a0fb6f59c32d21f67577c20268ce3dcc91a319f0a1a613d3ed3cf301bdf49a2

Contents?: true

Size: 631 Bytes

Versions: 7

Compression:

Stored size: 631 Bytes

Contents

require "codeclimate-test-reporter"
CodeClimate::TestReporter.start

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

require File.expand_path("../dummy/config/environment.rb",  __FILE__)
require "rails/test_help"
require "minitest/reporters"

Minitest::Reporters.use! Minitest::Reporters::DefaultReporter.new

# Load fixtures from the engine
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
ActionDispatch::IntegrationTest.fixture_path = File.expand_path("../fixtures", __FILE__)

class ActiveSupport::TestCase 
  fixtures :all
end

class ActionDispatch::IntegrationTest
  fixtures :all
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
spina-0.8.3 test/test_helper.rb
spina-0.8.2 test/test_helper.rb
spina-0.8.1 test/test_helper.rb
spina-0.8.0 test/test_helper.rb
spina-0.7.3 test/test_helper.rb
spina-0.7.2 test/test_helper.rb
spina-0.7.0 test/test_helper.rb