Empty test
This commit is contained in:
parent
2045eb6725
commit
af7cdb8cb4
test/unit/plugins/kernel_v2
|
@ -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
|
Loading…
Reference in New Issue