Sha256: a6c984cdce460df021d0169178441ad779efa2d286d36cfd370a0aa0495ef78a
Contents?: true
Size: 1.14 KB
Versions: 5
Compression:
Stored size: 1.14 KB
Contents
# # Specifying rufus-scheduler # # Mon May 4 17:07:17 JST 2009 # require File.join(File.dirname(__FILE__), '/spec_base') describe SCHEDULER_CLASS do before(:each) do @s = start_scheduler end after(:each) do stop_scheduler(@s) end it 'emits exception messages to stdout' do require 'stringio' unless defined?(StringIO) # ruby 1.9 stdout = $stdout s = StringIO.new $stdout = s @s.in 0.400 do raise 'Houston we have a problem' end sleep 0.500 sleep 0.500 $stdout = stdout s.close s.string.should match(/Houston we have a problem/) end it 'accepts custom handling of exceptions' do $job = nil def @s.handle_exception(j, e) $job = j end @s.in 0.400 do raise 'Houston we have a problem' end sleep 0.500 sleep 0.500 $job.class.should == Rufus::Scheduler::InJob end it 'accepts overriding #log_exception' do $e = nil def @s.log_exception(e) $e = e end @s.in 0.400 do raise 'Houston we have a problem' end sleep 0.500 sleep 0.500 $e.to_s.should == 'Houston we have a problem' end end
Version data entries
5 entries across 5 versions & 1 rubygems