spec/support/includer.rb in celluloid-0.17.1.2 vs spec/support/includer.rb in celluloid-0.17.2
- old
+ new
@@ -1,9 +1,6 @@
module CelluloidSpecs
def self.included_module
# Celluloid::IO implements this with with 'Celluloid::IO'
- Celluloid
+ (defined? INCLUDED_MODULE) ? INCLUDED_MODULE : Celluloid
end
-
- # Timer accuracy enforced by the tests (50ms)
- TIMER_QUANTUM = 0.05
end