mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-03 20:39:27 -05:00
19 lines
No EOL
501 B
Ruby
19 lines
No EOL
501 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
require File.expand_path("../../../../base", __FILE__)
|
|
|
|
require Vagrant.source_root.join("plugins/provisioners/docker/provisioner")
|
|
|
|
describe VagrantPlugins::DockerProvisioner::Plugin do
|
|
subject { described_class }
|
|
|
|
it "has valid guest capabilities" do
|
|
subject.components.guest_capabilities.each do |guest, caps|
|
|
caps.each do |cap|
|
|
subject.components.guest_capabilities[guest][cap]
|
|
end
|
|
end
|
|
end
|
|
|
|
end |