From 4ea8300766ec677bfddbf05b0cd9578caafdf1f4 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 14 Feb 2010 22:27:06 -0800 Subject: [PATCH] Move hard drive action. --- test/test_helper.rb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/test_helper.rb b/test/test_helper.rb index bd0579bdf..4d1f404c6 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -56,6 +56,12 @@ class Test::Unit::TestCase end end + if block_given? + Vagrant::Config.run do |config| + yield config + end + end + Vagrant::Config.execute! end