Sha256: b692b52195105cc28547a7c3d5baf06efbe6c32c3c81fda1f399d8aee80ff9ee
Contents?: true
Size: 492 Bytes
Versions: 23
Compression:
Stored size: 492 Bytes
Contents
# Bundler setup require 'bundler' Bundler.setup :default, :test # Coverage require 'coveralls' Coveralls.wear! do add_filter 'spec' end require 'rspec/autorun' require 'rspec/message/within' require 'msgr' Dir[File.expand_path('../support/**/*.rb', __FILE__)].each { |f| require f } RSpec.configure do |config| config.order = 'random' config.expect_with :rspec do |c| # Only allow expect syntax c.syntax = :expect end config.before do Msgr.logger = false end end
Version data entries
23 entries across 23 versions & 1 rubygems
Version | Path |
---|---|
msgr-0.7.0 | spec/msgr/spec_helper.rb |
msgr-0.6.0 | spec/msgr/spec_helper.rb |
msgr-0.5.0 | spec/msgr/spec_helper.rb |