Sha256: cee967ba27f0e1cafb75418c22af8e775cc14236b36574184e9b2527cd4f04c8
Contents?: true
Size: 1.33 KB
Versions: 1
Compression:
Stored size: 1.33 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" } 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], user: "vagrant", password: "vagrant") } describe "#run" do it "returns an SSH::ResponseSet" do subject.run("ls").should be_a(Ridley::HostConnector::ResponseSet) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ridley-0.10.0.rc1 | spec/unit/ridley/host_connector/ssh_spec.rb |