Sha256: 3f02a6a583993d3e775b95b5b9e18836b9cb6a999a143b5ec8a27363d380903a

Contents?: true

Size: 841 Bytes

Versions: 16

Compression:

Stored size: 841 Bytes

Contents

require File.join(File.dirname(__FILE__), '..', '..', '..', 'test_helper')

class CommandsBoxAddTest < Test::Unit::TestCase
  setup do
    @klass = Vagrant::Commands::Box::Add

    @persisted_vm = mock("persisted_vm")
    @persisted_vm.stubs(:execute!)

    @env = mock_environment
    @env.stubs(:require_persisted_vm)
    @env.stubs(:vm).returns(@persisted_vm)

    @instance = @klass.new(@env)
  end

  context "executing" do
    setup do
      @name = "foo"
      @path = "bar"
    end

    should "execute the add action with the name and path" do
      Vagrant::Box.expects(:add).with(@env, @name, @path).once
      @instance.execute([@name, @path])
    end

    should "show help if not enough arguments" do
      Vagrant::Box.expects(:add).never
      @instance.expects(:show_help).once
      @instance.execute([])
    end
  end
end

Version data entries

16 entries across 16 versions & 2 rubygems

Version Path
vagrantup-0.4.3.dev test/vagrant/commands/box/add_test.rb
vagrantup-0.4.1 test/vagrant/commands/box/add_test.rb
vagrantup-0.4.0 test/vagrant/commands/box/add_test.rb
vagrantup-0.3.4 test/vagrant/commands/box/add_test.rb
vagrantup-0.3.3 test/vagrant/commands/box/add_test.rb
vagrantup-0.3.2 test/vagrant/commands/box/add_test.rb
vagrantup-0.3.1 test/vagrant/commands/box/add_test.rb
vagrantup-0.3.0 test/vagrant/commands/box/add_test.rb
vagrant-0.4.2 test/vagrant/commands/box/add_test.rb
vagrant-0.4.1 test/vagrant/commands/box/add_test.rb
vagrant-0.4.0 test/vagrant/commands/box/add_test.rb
vagrant-0.3.4 test/vagrant/commands/box/add_test.rb
vagrant-0.3.3 test/vagrant/commands/box/add_test.rb
vagrant-0.3.2 test/vagrant/commands/box/add_test.rb
vagrant-0.3.1 test/vagrant/commands/box/add_test.rb
vagrant-0.3.0 test/vagrant/commands/box/add_test.rb