mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-07-16 12:25:43 -04:00
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
17 lines
413 B
Ruby
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
|