Sha256: 77d0e46cb3bc9aef0992d105860a70a3cc7ae540a61c9eec48e2c2796d40cae6
Contents?: true
Size: 391 Bytes
Versions: 18
Compression:
Stored size: 391 Bytes
Contents
require "spec_helper" describe Ruboty::Commands::Run do describe "#call" do let(:command) do Ruboty::CommandBuilder.new(arguments).build end let(:call) do command.call end let(:arguments) do [] end it "creates an adapter and calls .run to it" do Ruboty::Adapters::Shell.any_instance.should_receive(:run) call end end end
Version data entries
18 entries across 18 versions & 1 rubygems