From 4d8e3dc1bf251a44cc44091749c8c1f2c0b949d4 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 24 Dec 2010 18:41:18 -0800 Subject: [PATCH] Make this test actually test something --- test/vagrant/action/vm/clean_machine_folder_test.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/vagrant/action/vm/clean_machine_folder_test.rb b/test/vagrant/action/vm/clean_machine_folder_test.rb index ba1a0bb59..f6ce54b2c 100644 --- a/test/vagrant/action/vm/clean_machine_folder_test.rb +++ b/test/vagrant/action/vm/clean_machine_folder_test.rb @@ -77,6 +77,8 @@ class CleanMachineFolderVMActionTest < Test::Unit::TestCase should "do nothing if folder is < 10 characters" do VirtualBox::Global.global.system_properties.stubs(:default_machine_folder).returns("foo") Dir.expects(:[]).never + + @instance.clean_machine_folder end end end