vagrant/plugins/providers/hyperv/action/package_setup_folders.rb

19 lines
475 B
Ruby
Raw Normal View History

require "fileutils"
2016-10-06 06:55:59 +00:00
require_relative "../../../../lib/vagrant/action/general/package_setup_folders"
module VagrantPlugins
module HyperV
module Action
2016-10-06 06:55:59 +00:00
class PackageSetupFolders < Vagrant::Action::General::PackageSetupFolders
# Doing this so that we can test that the parent is properly
# called in the unit tests.
alias_method :general_call, :call
def call(env)
2016-10-06 06:55:59 +00:00
general_call(env)
end
end
end
end
end