Sha256: 63dc410249725a3805339f76e1cefa50ee9024ccb5cba859561c03fd641c4f73

Contents?: true

Size: 489 Bytes

Versions: 101

Compression:

Stored size: 489 Bytes

Contents

require "test_helper"

class DestroyBoxActionTest < Test::Unit::TestCase
  setup do
    @klass = Vagrant::Action::Box::Destroy
    @app, @env = action_env
    @env["box"] = Vagrant::Box.new(vagrant_env, "foo")

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

  should "delete the box directory" do
    seq = sequence("seq")
    FileUtils.expects(:rm_rf).with(@env["box"].directory).in_sequence(seq)
    @app.expects(:call).with(@env).once.in_sequence(seq)
    @instance.call(@env)
  end
end

Version data entries

101 entries across 101 versions & 9 rubygems

Version Path
bmhatfield-vagrant-1.0.10 test/unit_legacy/vagrant/action/box/destroy_test.rb
bmhatfield-vagrant-1.0.9 test/unit_legacy/vagrant/action/box/destroy_test.rb
bmhatfield-vagrant-1.0.8 test/unit_legacy/vagrant/action/box/destroy_test.rb
bmhatfield-vagrant-1.0.7 test/unit_legacy/vagrant/action/box/destroy_test.rb
vagrantup-1.0.7 test/unit_legacy/vagrant/action/box/destroy_test.rb
vagrantup-1.0.6 test/unit_legacy/vagrant/action/box/destroy_test.rb
vagrantup-1.0.5 test/unit_legacy/vagrant/action/box/destroy_test.rb
vagrantup-1.0.4 test/unit_legacy/vagrant/action/box/destroy_test.rb
vagrantup-1.0.3 test/unit_legacy/vagrant/action/box/destroy_test.rb
vagrantup-1.0.2 test/unit_legacy/vagrant/action/box/destroy_test.rb
vagrantup-1.0.1 test/unit_legacy/vagrant/action/box/destroy_test.rb
vagrantup-1.0.0 test/unit_legacy/vagrant/action/box/destroy_test.rb
vagrantup-0.9.99.2 test/unit_legacy/vagrant/action/box/destroy_test.rb
vagrantup-0.9.99.1 test/unit_legacy/vagrant/action/box/destroy_test.rb
vagrantup-0.9.7 test/unit_legacy/vagrant/action/box/destroy_test.rb
vagrantup-0.9.6 test/unit_legacy/vagrant/action/box/destroy_test.rb
vagrantup-0.9.5 test/unit_legacy/vagrant/action/box/destroy_test.rb
vagrantup-0.9.4 test/unit_legacy/vagrant/action/box/destroy_test.rb
vagrantup-0.9.3 test/unit_legacy/vagrant/action/box/destroy_test.rb
vagrantup-0.9.2 test/unit_legacy/vagrant/action/box/destroy_test.rb