vaguerent/plugins/providers/virtualbox/action/package_setup_folders.rb

22 lines
556 B
Ruby

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
require "fileutils"
require_relative "../../../../lib/vagrant/action/general/package_setup_folders"
module VagrantPlugins
module ProviderVirtualBox
module Action
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)
general_call(env)
end
end
end
end
end