31 lines
813 B
Ruby
31 lines
813 B
Ruby
require "test_helper"
|
|
|
|
class CustomizeVMActionTest < Test::Unit::TestCase
|
|
setup do
|
|
@klass = Vagrant::Action::VM::Customize
|
|
@app, @env = action_env
|
|
@instance = @klass.new(@app, @env)
|
|
|
|
@vm = mock("vm")
|
|
@env["vm"] = @vm
|
|
|
|
@internal_vm = mock("internal")
|
|
@vm.stubs(:vm).returns(@internal_vm)
|
|
end
|
|
|
|
should "not run anything if no customize blocks exist" do
|
|
@env.env.config.vm.proc_stack.clear
|
|
@internal_vm.expects(:save).never
|
|
@app.expects(:call).with(@env).once
|
|
@instance.call(@env)
|
|
end
|
|
|
|
should "run the VM customization procs then save the VM" do
|
|
@env.env.config.vm.customize { |vm| }
|
|
@env.env.config.vm.expects(:run_procs!).with(@internal_vm)
|
|
@internal_vm.expects(:save).once
|
|
@app.expects(:call).with(@env).once
|
|
@instance.call(@env)
|
|
end
|
|
end
|