Fix tests to not clear line
This commit is contained in:
parent
124a9ab19d
commit
14bb07e08f
|
@ -3,6 +3,7 @@ require File.join(File.dirname(__FILE__), '..', '..', '..', 'test_helper')
|
|||
class ExportActionTest < Test::Unit::TestCase
|
||||
setup do
|
||||
@runner, @vm, @action = mock_action(Vagrant::Actions::VM::Export)
|
||||
@action.stubs(:complete_progress)
|
||||
end
|
||||
|
||||
context "executing" do
|
||||
|
|
|
@ -10,6 +10,8 @@ class ImportActionTest < Test::Unit::TestCase
|
|||
@runner.env.stubs(:box).returns(@box)
|
||||
|
||||
VirtualBox::VM.stubs(:import)
|
||||
|
||||
@import.stubs(:complete_progress)
|
||||
end
|
||||
|
||||
should "run in a busy block" do
|
||||
|
|
Loading…
Reference in New Issue