Sha256: 449c5050220b3dee12ac1e031298bc905bd7ec364a56f1db07c4632b15e8ab04
Contents?: true
Size: 626 Bytes
Versions: 4
Compression:
Stored size: 626 Bytes
Contents
require 'simplecov' if ENV['COVERAGE'] == 'true' # default rails test configuration ENV['RAILS_ENV'] ||= 'test' require File.expand_path('../../config/environment', __FILE__) require 'rails/test_help' # use minitest-reporters to create xmls for jenkins and nicer terminal reporting require 'minitest/reporters' Minitest::Reporters.use! [Minitest::Reporters::SpecReporter.new, Minitest::Reporters::JUnitReporter.new] # default test class for unit tests class UnitTest < ActiveSupport::TestCase # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. fixtures :all end
Version data entries
4 entries across 4 versions & 1 rubygems