Sha256: 1d77775c6afc3a325004903d0336867951fa1a34e0f01b4d18de3a0a2167a31d

Contents?: true

Size: 837 Bytes

Versions: 22

Compression:

Stored size: 837 Bytes

Contents

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

describe VagrantPlugins::CommandPlugin::Action::PluginExistsCheck do
  let(:app) { lambda {} }
  let(:env) { {} }

  let(:manager) { double("manager") }

  subject { described_class.new(app, env) }

  before do
    Vagrant::Plugin::Manager.stub(instance: manager)
  end

  it "should raise an exception if the plugin doesn't exist" do
    manager.stub(installed_plugins: { "foo" => {} })
    expect(app).not_to receive(:call)

    env[:plugin_name] = "bar"
    expect { subject.call(env) }.
      to raise_error(Vagrant::Errors::PluginNotInstalled)
  end

  it "should call the app if the plugin is installed" do
    manager.stub(installed_plugins: { "bar" => {} })
    expect(app).to receive(:call).once.with(env)

    env[:plugin_name] = "bar"
    subject.call(env)
  end
end

Version data entries

22 entries across 19 versions & 5 rubygems

Version Path
vagrant-unbundled-1.9.7.1 test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb
vagrant-aws-mkubenka-0.7.2.pre.14 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb
vagrant-aws-mkubenka-0.7.2.pre.11 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb
vagrant-aws-mkubenka-0.7.2.pre.10 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb
vagrant-aws-mkubenka-0.7.2.pre.9 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb
vagrant-unbundled-1.9.5.1 test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb
vagrant-unbundled-1.9.1.1 test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb
vagrant-unbundled-1.8.5.2 test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb
vagrant-unbundled-1.8.5.1 test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb
vagrant-unbundled-1.8.4.2 test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb
vagrant-unbundled-1.8.4.1 test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb
vagrant-unbundled-1.8.1.2 test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb
vagrant-unbundled-1.8.1.1 test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-b421af58e8b3/test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-1cf2a8db4ccb/test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-309e896975d1/test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb