Fixed a bug with forwarded ports action

This commit is contained in:
Mitchell Hashimoto 2010-02-14 22:59:01 -08:00 committed by John Bender
parent b115fc0ea0
commit c176a04cfa
2 changed files with 4 additions and 4 deletions

View File

@ -10,10 +10,10 @@ module Vagrant
port.name = name
port.hostport = options[:hostport]
port.guestport = options[:guestport]
@vm.forwarded_ports << port
@vm.vm.forwarded_ports << port
end
@vm.save(true)
@vm.vm.save(true)
end
end
end

View File

@ -18,8 +18,8 @@ class ForwardPortsActionTest < Test::Unit::TestCase
end
end
@mock_vm.expects(:forwarded_ports).returns(forwarded_ports)
@mock_vm.expects(:save).with(true).once
@vm.expects(:forwarded_ports).returns(forwarded_ports)
@vm.expects(:save).with(true).once
@action.execute!
end
end