Empty test

This commit is contained in:
Jeff Bonhag 2019-12-02 16:40:58 -05:00
parent 2045eb6725
commit af7cdb8cb4
No known key found for this signature in database
GPG Key ID: 32966F3FB5AC1129
1 changed files with 20 additions and 0 deletions
test/unit/plugins/kernel_v2

View File

@ -0,0 +1,20 @@
require File.expand_path("../../../base", __FILE__)
describe VagrantPlugins::Kernel_V2::Plugin do
before do
expect($stderr).to receive(:puts)
end
it "should display a warning if vagrant-alpine plugin is installed" do
end
context "when VAGRANT_USE_VAGRANT_ALPINE=1" do
before do
ENV["VAGRANT_USE_VAGRANT_ALPINE"] = "1"
end
it "should not display a warning" do
end
end
end