vagrant/test/unit/plugins/kernel_v2/config/package_test.rb
oss-core-libraries-dashboard[bot] baad494090
[COMPLIANCE] Update Copyright and License Headers (Batch 5 of 7) (#13764)
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
2025-12-22 16:47:10 +05:30

17 lines
413 B
Ruby

# Copyright IBM Corp. 2010, 2025
# SPDX-License-Identifier: BUSL-1.1
require File.expand_path("../../../../base", __FILE__)
require Vagrant.source_root.join("plugins/kernel_v2/config/package")
describe VagrantPlugins::Kernel_V2::PackageConfig do
subject { described_class.new }
describe "#name" do
it "defaults to nil" do
subject.finalize!
expect(subject.name).to be_nil
end
end
end