Sha256: c05bed6709f4da122457349646f0531f90bd77a0074ef7c2a1985c5515775a43

Contents?: true

Size: 809 Bytes

Versions: 1

Compression:

Stored size: 809 Bytes

Contents

require "spec_helper"

describe Alephant::Publisher::Queue::SQSHelper::Queue do
  describe "#message" do
    it "returns a message" do
      m = double("message").as_null_object
      q = double("queue").as_null_object

      expect(q).to receive(:receive_messages).and_return(m)

      instance = Alephant::Publisher::Queue::SQSHelper::Queue.new(q)

      expect(instance.message).to eq(m)
    end

    it "call see(m) on the handed archiver" do
      a = double("archiver").as_null_object
      m = double("message").as_null_object
      q = double("queue").as_null_object

      expect(q).to receive(:receive_messages).and_return(m)
      expect(a).to receive(:see).with(m)

      instance = Alephant::Publisher::Queue::SQSHelper::Queue.new(q, a)

      expect(instance.message).to eq(m)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
alephant-publisher-queue-2.6.0 spec/alephant/publisher/queue/sqs_helper/queue_spec.rb