summaryrefslogtreecommitdiff
path: root/spec/mspec/spec/matchers/block_caller_spec.rb
blob: 5d7085fa635e51898b8facbb18663599f51186d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'spec_helper'
require 'mspec/expectations/expectations'
require 'mspec/matchers'

RSpec.describe BlockingMatcher do
  it 'matches when a Proc blocks the caller' do
    expect(BlockingMatcher.new.matches?(proc { sleep })).to eq(true)
  end

  it 'does not match when a Proc does not block the caller' do
    expect(BlockingMatcher.new.matches?(proc { 1 })).to eq(false)
  end
end