test/test_library.rb in zhong-0.1.6 vs test/test_library.rb in zhong-0.1.7

- old
+ new

@@ -8,15 +8,22 @@ def teardown Zhong.stop sleep 1 end + def test_logger + test_logger = Zhong.logger + Zhong.logger = nil + assert_output(nil, nil) { Zhong.logger.info "ensure has default logger" } + Zhong.logger = test_logger + end + def test_heartbeats Zhong.schedule { nil } t = Thread.new { Zhong.start } sleep(1) assert_equal true, Zhong.any_running? - assert_in_delta Zhong.redis_time.to_f, Time.now.to_f, 0.1 + assert_in_delta Zhong.redis_time.to_f, Time.now.to_f, 1 assert_in_delta Zhong.redis_time.to_f, Zhong.latest_heartbeat.to_f, 1 Zhong.stop t.join end end