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

Version Path
railman-1.0.2 templates/rails_app/test/test_helper.rb
railman-1.0.1 templates/rails_app/test/test_helper.rb
railman-1.0.0 templates/rails_app/test/test_helper.rb
railman-0.6.20 templates/rails_app/test/test_helper.rb
railman-0.6.19 templates/rails_app/test/test_helper.rb
railman-0.6.18 templates/rails_app/test/test_helper.rb
railman-0.6.17 templates/rails_app/test/test_helper.rb
railman-0.6.16 templates/rails_app/test/test_helper.rb
railman-0.6.15 templates/rails_app/test/test_helper.rb
railman-0.6.14 templates/rails_app/test/test_helper.rb