require 'spec_helper' describe Alephant::Publisher do let(:options) { Alephant::Publisher::Options.new } let(:instance) { Alephant::Publisher.create(options) } before(:each) do Alephant::Publisher::Queue.any_instance.stub(:initialize) end describe "#initialize(opts = {}, logger)" do it "sets parser, sequencer, queue and writer" do expect(instance.queue).to be_a Alephant::Publisher::Queue end end end