Sha256: ed7c6146251d47bd5861676b055df79856bfa1fd55b0c7a682bd1b46fd742db9

Contents?: true

Size: 672 Bytes

Versions: 32

Compression:

Stored size: 672 Bytes

Contents

require_relative "../../../../base"

describe "VagrantPlugins::GuestOmniOS::Cap:RSync" do
  let(:caps) do
    VagrantPlugins::GuestOmniOS::Plugin
      .components
      .guest_capabilities[:omnios]
  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
      cap.rsync_install(machine)
      expect(comm.received_commands[0]).to match(/pkg install rsync/)
    end
  end
end

Version data entries

32 entries across 28 versions & 6 rubygems

Version Path
vagrant-aws-mkubenka-0.7.2.pre.10 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/omnios/cap/rsync_test.rb
vagrant-aws-mkubenka-0.7.2.pre.9 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/omnios/cap/rsync_test.rb
vagrant-unbundled-1.9.5.1 test/unit/plugins/guests/omnios/cap/rsync_test.rb
vagrant-unbundled-1.9.1.1 test/unit/plugins/guests/omnios/cap/rsync_test.rb
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/omnios/cap/rsync_test.rb
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/omnios/cap/rsync_test.rb
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/omnios/cap/rsync_test.rb
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/omnios/cap/rsync_test.rb
vagrant-unbundled-1.8.5.2 test/unit/plugins/guests/omnios/cap/rsync_test.rb
vagrant-unbundled-1.8.5.1 test/unit/plugins/guests/omnios/cap/rsync_test.rb
vagrant-unbundled-1.8.4.2 test/unit/plugins/guests/omnios/cap/rsync_test.rb
vagrant-unbundled-1.8.4.1 test/unit/plugins/guests/omnios/cap/rsync_test.rb