Sha256: 5014960f041e07bb932dd848c0c952e6844be449531a02c17443218d8c8ee7c9
Contents?: true
Size: 808 Bytes
Versions: 32
Compression:
Stored size: 808 Bytes
Contents
require_relative "../../../../base" describe "VagrantPlugins::GuestDebian::Cap::NFSClient" do let(:described_class) do VagrantPlugins::GuestDebian::Plugin .components .guest_capabilities[:debian] .get(:nfs_client_install) 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 it "installs nfs client utilities" do described_class.nfs_client_install(machine) expect(comm.received_commands[0]).to match(/apt-get -yqq update/) expect(comm.received_commands[0]).to match(/apt-get -yqq install nfs-common portmap/) end end end
Version data entries
32 entries across 28 versions & 6 rubygems