Nicer error message when box is not found. [closes GH-195]
This commit is contained in:
parent
af9fdef791
commit
ef50361f95
|
@ -1,5 +1,6 @@
|
|||
## 0.6.7 (unreleased)
|
||||
|
||||
- Proper error message when box is not found for `config.vm.box`. [GH-195]
|
||||
- Fix output of `vagrant status` with multi-vm to be correct. [GH-196]
|
||||
|
||||
## 0.6.6 (October 14, 2010)
|
||||
|
|
|
@ -121,7 +121,9 @@ module Vagrant
|
|||
#
|
||||
# @return [Box]
|
||||
def box
|
||||
boxes.find(config.vm.box)
|
||||
result = boxes.find(config.vm.box)
|
||||
raise Errors::BoxNotFound, :name => config.vm.box if vm && !result
|
||||
result
|
||||
end
|
||||
|
||||
# Returns the VMs associated with this environment.
|
||||
|
|
|
@ -25,11 +25,16 @@ module Vagrant
|
|||
def vagrantfile(*args)
|
||||
path = args.shift.join("Vagrantfile") if Pathname === args.first
|
||||
path ||= vagrant_app("Vagrantfile")
|
||||
|
||||
# Create this box so that it exists
|
||||
vagrant_box("base")
|
||||
|
||||
str = args.shift || ""
|
||||
File.open(path.to_s, "w") do |f|
|
||||
f.puts "Vagrant::Config.run do |config|"
|
||||
f.puts "config.vagrant.home = '#{home_path}'"
|
||||
f.puts "config.vm.base_mac = 'foo' if !config.vm.base_mac"
|
||||
f.puts "config.vm.box = 'base'"
|
||||
f.puts str
|
||||
f.puts "end"
|
||||
end
|
||||
|
|
|
@ -13,18 +13,19 @@ class BoxCollectionTest < Test::Unit::TestCase
|
|||
|
||||
result = @klass.new(vagrant_env)
|
||||
names = result.collect { |b| b.name }.sort
|
||||
assert_equal 2, result.length
|
||||
assert_equal ["bar", "foo"], names
|
||||
assert result.length >= 2
|
||||
assert names.include?("foo")
|
||||
assert names.include?("bar")
|
||||
end
|
||||
|
||||
should "reload the box list" do
|
||||
instance = @klass.new(vagrant_env)
|
||||
assert instance.empty?
|
||||
amount = instance.length
|
||||
|
||||
vagrant_box("foo")
|
||||
|
||||
instance.reload!
|
||||
assert !instance.empty?
|
||||
assert_equal (amount + 1), instance.length
|
||||
end
|
||||
|
||||
should "find a specific box" do
|
||||
|
|
Loading…
Reference in New Issue