vagrant/test/unit/plugins/guests/suse/cap/nfs_client_test.rb

32 lines
860 B
Ruby
Raw Normal View History

require_relative "../../../../base"
describe "VagrantPlugins::GuestSUSE::Cap::NFSClient" 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 ".nfs_client_install" do
let(:cap) { caps.get(:nfs_client_install) }
it "installs nfs client utilities" do
cap.nfs_client_install(machine)
expect(comm.received_commands[0]).to match(/zypper -n install nfs-client/)
expect(comm.received_commands[0]).to match(/service rpcbind restart/)
expect(comm.received_commands[0]).to match(/service nfs restart/)
end
end
end