Sha256: d4410e2113b83026781fac45e77ca87c70b7a4daf56842e3ff0d3274e4e79491
Contents?: true
Size: 494 Bytes
Versions: 3
Compression:
Stored size: 494 Bytes
Contents
require 'bundler/setup' require 'pry' require 'pry-byebug' require 'minitest/autorun' require 'minitest/reporters' require 'warnings_logger' require_relative '../lib/shoulda' Minitest::Reporters.use!(Minitest::Reporters::SpecReporter.new) WarningsLogger::Spy.call( project_name: 'shoulda', project_directory: Pathname.new('../..').expand_path(__FILE__), ) Shoulda::Matchers.configure do |config| config.integrate do |with| with.test_framework :minitest end end $VERBOSE = true
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
shoulda-4.0.0 | test/test_helper.rb |
shoulda-4.0.0.rc2 | test/test_helper.rb |
shoulda-4.0.0.rc1 | test/test_helper.rb |