Sha256: 2226586b5f00b410edf87a1fb25662a632feb817f28bb86ce1939d2009e77567

Contents?: true

Size: 370 Bytes

Versions: 8

Compression:

Stored size: 370 Bytes

Contents

require 'spec_helper'
require 'flydata/command/status'

module Flydata
  module Command
    describe Status do
      subject { described_class.new }
      let(:sender) { double("sender") }

      it do
        expect(Flydata::Command::Sender).to receive(:new).and_return(sender)
        expect(sender).to receive(:status)
        subject.run
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
flydata-0.3.13 spec/flydata/command/status_spec.rb
flydata-0.3.12 spec/flydata/command/status_spec.rb
flydata-0.3.11 spec/flydata/command/status_spec.rb
flydata-0.3.10 spec/flydata/command/status_spec.rb
flydata-0.3.9 spec/flydata/command/status_spec.rb
flydata-0.3.8 spec/flydata/command/status_spec.rb
flydata-0.3.7 spec/flydata/command/status_spec.rb
flydata-0.3.6 spec/flydata/command/status_spec.rb