spec/timeout/extensions_spec.rb in timeout-extensions-0.0.0 vs spec/timeout/extensions_spec.rb in timeout-extensions-0.1.0

- old
+ new

@@ -1,35 +1,31 @@ -require 'spec_helper' +require "spec_helper" -describe Timeout::Extensions do - describe "timeout" do +RSpec.describe Timeout::Extensions do + describe ".timeout" do let(:dummy_timeout) { double(:meta_timeout) } let(:exception) { double(:exception) } - let(:action) { Proc.new{ |t| } } - context "inside and outside of actor" do + let(:action) { proc { |t| } } + context "inside and outside of thread" do it "hits the proper timeout handler" do - within_actor do + within_thread do Thread.current.timeout_handler = dummy_timeout expect(dummy_timeout).to receive(:call).with(2, exception, &action) timeout(2, exception, &action) end - expect(Timeout).to receive(:timeout_without_handler) - timeout(2, exception, &action) end end end - describe "sleep" do + describe ".sleep" do let(:dummy_sleep) { double(:meta_sleep) } - context "inside and outside of actor" do + context "inside and outside of thread" do it "hits the proper sleep handler" do - within_actor do + within_thread do Thread.current.sleep_handler = dummy_sleep expect(dummy_sleep).to receive(:call).with(2) sleep(2) end - expect(self).to receive(:sleep_without_handler) - sleep(2) end end - end + end end