Sha256: f8cf4ee8a47124acad8da9ffac65d394370e4fcacd068c61ab98daec7d8a5862
Contents?: true
Size: 590 Bytes
Versions: 7
Compression:
Stored size: 590 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 Celluloid.logger = nil Celluloid.shutdown Celluloid.boot Celluloid.logger = nil Msgr.logger = false end end
Version data entries
7 entries across 7 versions & 1 rubygems