diff --git a/test/support/path.rb b/test/support/path.rb index 495481e17..cb7c6f493 100644 --- a/test/support/path.rb +++ b/test/support/path.rb @@ -4,7 +4,9 @@ module VagrantTestHelpers module Path # Path to the tmp directory for the tests def tmp_path - Vagrant.source_root.join("test", "tmp") + result = Vagrant.source_root.join("test", "tmp") + FileUtils.mkdir_p(result) + result end # Path to the "home" directory for the tests