Moved the root shared folder to load in the start task.
This commit is contained in:
parent
815b253b7e
commit
9e41bd9a34
|
@ -17,6 +17,11 @@ error
|
|||
end
|
||||
end
|
||||
|
||||
def collect_shared_folders
|
||||
# The root shared folder for the project
|
||||
["vagrant-root", Env.root_path, Vagrant.config.vm.project_directory]
|
||||
end
|
||||
|
||||
def boot
|
||||
logger.info "Booting VM..."
|
||||
@runner.vm.start(:headless, true)
|
||||
|
|
|
@ -14,11 +14,6 @@ module Vagrant
|
|||
end
|
||||
end
|
||||
|
||||
def collect_shared_folders
|
||||
# The root shared folder for the project
|
||||
["vagrant-root", Env.root_path, Vagrant.config.vm.project_directory]
|
||||
end
|
||||
|
||||
def after_import
|
||||
persist
|
||||
setup_mac_address
|
||||
|
|
|
@ -45,4 +45,11 @@ class StartActionTest < Test::Unit::TestCase
|
|||
assert !@action.wait_for_boot(0)
|
||||
end
|
||||
end
|
||||
|
||||
context "callbacks" do
|
||||
should "setup the root directory shared folder" do
|
||||
expected = ["vagrant-root", Vagrant::Env.root_path, Vagrant.config.vm.project_directory]
|
||||
assert_equal expected, @action.collect_shared_folders
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -52,11 +52,6 @@ class UpActionTest < Test::Unit::TestCase
|
|||
@action.expects(:setup_mac_address).once.in_sequence(boot_seq)
|
||||
@action.after_import
|
||||
end
|
||||
|
||||
should "setup the root directory shared folder" do
|
||||
expected = ["vagrant-root", Vagrant::Env.root_path, Vagrant.config.vm.project_directory]
|
||||
assert_equal expected, @action.collect_shared_folders
|
||||
end
|
||||
end
|
||||
|
||||
context "persisting" do
|
||||
|
|
Loading…
Reference in New Issue