Rename Hyper-V Sync helper source file

This commit is contained in:
Zhongcheng Lao 2019-06-29 21:35:39 +08:00
parent 9c09b1c736
commit ab18f2ea85
8 changed files with 7 additions and 7 deletions

View File

@ -2,7 +2,7 @@ require 'optparse'
require "vagrant/action/builtin/mixin_synced_folders"
require_relative "../helper"
require_relative "../sync_helper"
module VagrantPlugins
module HyperV

View File

@ -8,7 +8,7 @@ require "vagrant/util/platform"
require "listen"
require_relative '../helper'
require_relative '../sync_helper'
module VagrantPlugins
module HyperV

View File

@ -1,7 +1,7 @@
require "fileutils"
require "vagrant/util/platform"
require_relative 'helper'
require_relative 'sync_helper'
module VagrantPlugins
module HyperV

View File

@ -1,6 +1,6 @@
require_relative "../../../../base"
require Vagrant.source_root.join("plugins/providers/hyperv/helper")
require Vagrant.source_root.join("plugins/providers/hyperv/sync_helper")
require Vagrant.source_root.join("plugins/providers/hyperv/command/sync_auto")
describe VagrantPlugins::HyperV::Command::SyncAuto do

View File

@ -1,6 +1,6 @@
require_relative "../../../../base"
require Vagrant.source_root.join("plugins/providers/hyperv/helper")
require Vagrant.source_root.join("plugins/providers/hyperv/sync_helper")
require Vagrant.source_root.join("plugins/providers/hyperv/command/sync")
describe VagrantPlugins::HyperV::Command::Sync do

View File

@ -3,7 +3,7 @@ require 'zip'
require_relative "../../../base"
require Vagrant.source_root.join("plugins/providers/hyperv/helper")
require Vagrant.source_root.join("plugins/providers/hyperv/sync_helper")
describe VagrantPlugins::HyperV::SyncHelper do
subject { described_class }

View File

@ -3,7 +3,7 @@ require "vagrant"
require Vagrant.source_root.join("test/unit/base")
require Vagrant.source_root.join("plugins/providers/hyperv/config")
require Vagrant.source_root.join("plugins/providers/hyperv/errors")
require Vagrant.source_root.join("plugins/providers/hyperv/helper")
require Vagrant.source_root.join("plugins/providers/hyperv/sync_helper")
require Vagrant.source_root.join("plugins/providers/hyperv/synced_folder")
describe VagrantPlugins::HyperV::SyncedFolder do