Sha256: 199c3b27c9df4fef9520cd5fa47d1b2d34265441f6efc1baa121c627b8e847bc

Contents?: true

Size: 1.23 KB

Versions: 32

Compression:

Stored size: 1.23 KB

Contents

require File.expand_path("../../../../base", __FILE__)

require Vagrant.source_root.join("plugins/commands/cap/command")

describe VagrantPlugins::CommandCap::Command do
  include_context "unit"

  let(:iso_env) do
    # We have to create a Vagrantfile so there is a root path
    env = isolated_environment
    env.vagrantfile("")
    env.create_vagrant_env
  end

  let(:guest)   { double("guest") }
  let(:host)    { double("host") }
  let(:machine) { iso_env.machine(iso_env.machine_names[0], :dummy) }

  let(:argv)     { [] }

  subject { described_class.new(argv, iso_env) }

  before do
    allow(subject).to receive(:with_target_vms) { |&block| block.call machine }
  end

  describe "execute" do
    context "--check provider foo (exists)" do
      let(:argv) { ["--check", "provider", "foo"] }
      let(:cap) { Class.new }

      before do
        register_plugin do |p|
          p.provider_capability(:dummy, :foo) { cap }
        end
      end

      it "exits with 0 if it exists" do
        expect(subject.execute).to eq(0)
      end
    end

    context "--check provider foo (doesn't exists)" do
      let(:argv) { ["--check", "provider", "foo"] }

      it "exits with 1" do
        expect(subject.execute).to eq(1)
      end
    end
  end
end

Version data entries

32 entries across 28 versions & 5 rubygems

Version Path
vagrant-unbundled-1.9.5.1 test/unit/plugins/commands/cap/command_test.rb
vagrant-unbundled-1.9.1.1 test/unit/plugins/commands/cap/command_test.rb
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/commands/cap/command_test.rb
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/commands/cap/command_test.rb
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/commands/cap/command_test.rb
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/commands/cap/command_test.rb
vagrant-unbundled-1.8.5.2 test/unit/plugins/commands/cap/command_test.rb
vagrant-unbundled-1.8.5.1 test/unit/plugins/commands/cap/command_test.rb
vagrant-unbundled-1.8.4.2 test/unit/plugins/commands/cap/command_test.rb
vagrant-unbundled-1.8.4.1 test/unit/plugins/commands/cap/command_test.rb
vagrant-unbundled-1.8.1.2 test/unit/plugins/commands/cap/command_test.rb
vagrant-unbundled-1.8.1.1 test/unit/plugins/commands/cap/command_test.rb