Box collection reloads after downloading during CheckBox. [closes GH-229]

This commit is contained in:
Mitchell Hashimoto 2010-11-30 20:19:24 -08:00
parent 0c5231e7b7
commit 331e0841e5
3 changed files with 3 additions and 3 deletions

View File

@ -10,6 +10,7 @@
- Multiple NFS folders now work on linux. [GH-215]
- Add translation for state "stuck" which is very rare. [GH-218]
- virtualbox gem dependency minimum raised to 0.7.6 to verify FFI < 1.0.0 is used.
- Fix issue where box downloading from `vagrant up` didn't reload the box collection. [GH-229]
## 0.6.7 (November 3, 2010)

View File

@ -16,6 +16,7 @@ module Vagrant
env.ui.info I18n.t("vagrant.actions.vm.check_box.not_found", :name => box_name)
Vagrant::Box.add(env.env, box_name, box_url)
env["boxes"].reload!
end
@app.call(env)

View File

@ -6,9 +6,6 @@ class CheckBoxVMActionTest < Test::Unit::TestCase
end
context "calling" do
setup do
end
should "raise error if box not specified" do
app, env = action_env(vagrant_env(vagrantfile(<<-vf)))
config.vm.box = nil
@ -47,6 +44,7 @@ class CheckBoxVMActionTest < Test::Unit::TestCase
seq = sequence("seq")
env.env.boxes.expects(:find).returns(nil)
Vagrant::Box.expects(:add).with(env.env, env["config"].vm.box, env["config"].vm.box_url).in_sequence(seq)
env.env.boxes.expects(:reload!).in_sequence(seq)
app.expects(:call).with(env).once.in_sequence(seq)
assert_nothing_raised {