Sha256: 86273eac866beb25f8ce08494359667a47adce79e7118688f6c2459781b4976a
Contents?: true
Size: 1.38 KB
Versions: 5
Compression:
Stored size: 1.38 KB
Contents
require 'spec_helper' describe Ridley::HostConnector::SSH do let(:connection) { double('conn', ssh: { user: "vagrant", password: "vagrant" }) } let(:node_one) do Ridley::NodeResource.new(connection, automatic: { cloud: { public_hostname: "33.33.33.10" } }) end let(:node_two) do Ridley::NodeResource.new(connection, automatic: { cloud: { public_hostname: "33.33.33.11" } }) end describe "ClassMethods" do subject { Ridley::HostConnector::SSH } describe "::start" do let(:options) do { user: "vagrant", password: "vagrant", timeout: 1 } end it "evaluates within the context of a new SSH and returns the last item in the block" do result = subject.start([node_one, node_two], options) do |ssh| ssh.run("ls") end result.should be_a(Ridley::HostConnector::ResponseSet) end it "raises a LocalJumpError if a block is not provided" do expect { subject.start([node_one, node_two], options) }.to raise_error(LocalJumpError) end end end subject { Ridley::HostConnector::SSH.new([node_one, node_two], ssh: {user: "vagrant", password: "vagrant", timeout: 1}) } describe "#run" do it "returns an HostConnector::ResponseSet" do subject.run("ls").should be_a(Ridley::HostConnector::ResponseSet) end end end
Version data entries
5 entries across 5 versions & 1 rubygems