diff --git a/test/unit/plugins/kernel_v2/plugin_test.rb b/test/unit/plugins/kernel_v2/plugin_test.rb new file mode 100644 index 000000000..3ecf38ca9 --- /dev/null +++ b/test/unit/plugins/kernel_v2/plugin_test.rb @@ -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