Sha256: 4f57e76f8135755333a3f9b8c7c33d5f8a508d99d86d9e41b0edad1f839fbc34

Contents?: true

Size: 1.1 KB

Versions: 7

Compression:

Stored size: 1.1 KB

Contents

RSpec::Matchers.define :publish_event do |name, data = {}|
  match do |block|
    defaults = {:actor => anything}
    Reactor::Event.should_receive(:publish).with(name, hash_including(defaults.merge(data)))

    begin
      block.call
      RSpec::Mocks::verify
      true
    rescue RSpec::Mocks::MockExpectationError => e
      false
    end
  end
end

RSpec::Matchers.define :publish_events do |*events|
  match do |block|
    Reactor::Event.should_receive(:publish).exactly(events.count).times.with do |event, data|
      match = events.select { |e| (e.is_a?(Hash) ? e.keys.first : e) == event }.first
      match.should be_present

      expected = match.is_a?(Hash) ? match.values.first : {match => {}}
      expected.each do |key, value|
        value.should == expected[key]
      end
    end

    begin
      block.call
      RSpec::Mocks::verify
      true
    rescue RSpec::Mocks::MockExpectationError => e
      false
    end
  end
end

RSpec::Matchers.define :subscribe_to do |name, data = {}, &expectations|
  match do
    expectations.call if expectations.present?
    Reactor::Event.publish(name, data)
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
reactor-0.8.0 lib/reactor/testing/matchers.rb
reactor-0.7.1 lib/reactor/testing/matchers.rb
reactor-0.7.0 lib/reactor/testing/matchers.rb
reactor-0.6.2 lib/reactor/testing/matchers.rb
reactor-0.6.1 lib/reactor/testing/matchers.rb
reactor-0.6.0 lib/reactor/testing/matchers.rb
reactor-0.5.3 lib/reactor/testing/matchers.rb