spec/spec_helper.rb in celluloid-zmq-0.17.0 vs spec/spec_helper.rb in celluloid-zmq-0.17.2

- old
+ new

@@ -1,45 +1,12 @@ -require 'coveralls' -Coveralls.wear! +require "rubygems" +require "bundler/setup" -require 'rubygems' -require 'bundler/setup' -require 'celluloid/zmq' -require 'celluloid/rspec' - -module CelluloidSpecs - # Require a file from Celluloid gem 'spec' location directly - def self.require(path) - celluloid = Pathname(Gem::Specification.find_all_by_name('celluloid').first.full_gem_path) - full_path = celluloid + 'spec' + path - Kernel.require(full_path.to_s) - end - - def self.included_module - Celluloid::ZMQ - end - - # Timer accuracy enforced by the tests (50ms) - TIMER_QUANTUM = 0.05 +module Specs + INCLUDED_MODULE = Celluloid::ZMQ + ALLOW_SLOW_MAILBOXES = true # TODO: Remove hax. end -logfile = File.open(File.expand_path("../../log/test.log", __FILE__), 'a') -Celluloid.logger = Logger.new(logfile) +require "celluloid/rspec" +require "celluloid/zmq" -Celluloid.shutdown_timeout = 1 - -RSpec.configure(&:disable_monkey_patching!) - -RSpec.configure do |config| - config.around do |ex| - Celluloid::ZMQ.init(1) unless ex.metadata[:no_init] - Celluloid.boot - ex.run - Celluloid.shutdown - Celluloid::ZMQ.terminate - end - - config.before(:each) do |example| - @fake_logger = Specs::FakeLogger.new(Celluloid.logger, example.description) - stub_const('Celluloid::Internals::Logger', @fake_logger) - end -end +Dir[*Specs::INCLUDE_PATHS].map { |f| require f }