guests/suse: Configure rsync in one command

This commit is contained in:
Seth Vargo 2016-06-06 10:45:17 -04:00
parent c259032f80
commit c9f21a1852
No known key found for this signature in database
GPG Key ID: 905A90C2949E8787
2 changed files with 39 additions and 3 deletions

View File

@ -7,9 +7,7 @@ module VagrantPlugins
end
def self.rsync_install(machine)
machine.communicate.tap do |comm|
comm.sudo("zypper -n install rsync")
end
machine.communicate.sudo("zypper -n install rsync")
end
end
end

View File

@ -0,0 +1,38 @@
require_relative "../../../../base"
describe "VagrantPlugins::GuestSUSE::Cap::RSync" do
let(:caps) do
VagrantPlugins::GuestSUSE::Plugin
.components
.guest_capabilities[:suse]
end
let(:machine) { double("machine") }
let(:comm) { VagrantTests::DummyCommunicator::Communicator.new(machine) }
before do
allow(machine).to receive(:communicate).and_return(comm)
end
after do
comm.verify_expectations!
end
describe ".rsync_install" do
let(:cap) { caps.get(:rsync_install) }
it "installs rsync" do
comm.expect_command("zypper -n install rsync")
cap.rsync_install(machine)
end
end
describe ".rsync_installed" do
let(:cap) { caps.get(:rsync_installed) }
it "checks if rsync is installed" do
comm.expect_command("test -f /usr/bin/rsync")
cap.rsync_installed(machine)
end
end
end