Sha256: 8135483437568db85366962fc3a30e6a363e9c7b70904413fbd24915a2ca2079
Contents?: true
Size: 745 Bytes
Versions: 10
Compression:
Stored size: 745 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' require 'minitest/reporters/screenshot_reporter' Minitest::Reporters.use! [Minitest::Reporters::SpecReporter.new, Minitest::Reporters::JUnitReporter.new, Minitest::Reporters::ScreenshotReporter.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
10 entries across 10 versions & 1 rubygems