30 lines
817 B
Ruby
30 lines
817 B
Ruby
|
require_relative "../../../../base"
|
||
|
|
||
|
require Vagrant.source_root.join("plugins/providers/hyperv/action/delete_vm")
|
||
|
|
||
|
describe VagrantPlugins::HyperV::Action::DeleteVM do
|
||
|
let(:app){ double("app") }
|
||
|
let(:env){ {ui: ui, machine: machine} }
|
||
|
let(:ui){ double("ui") }
|
||
|
let(:provider){ double("provider", driver: driver) }
|
||
|
let(:driver){ double("driver") }
|
||
|
let(:machine){ double("machine", provider: provider) }
|
||
|
let(:subject){ described_class.new(app, env) }
|
||
|
|
||
|
before do
|
||
|
allow(app).to receive(:call)
|
||
|
allow(ui).to receive(:info)
|
||
|
allow(driver).to receive(:delete_vm)
|
||
|
end
|
||
|
|
||
|
it "should call the app on success" do
|
||
|
expect(app).to receive(:call)
|
||
|
subject.call(env)
|
||
|
end
|
||
|
|
||
|
it "should call the driver to delete the vm" do
|
||
|
expect(driver).to receive(:delete_vm)
|
||
|
subject.call(env)
|
||
|
end
|
||
|
end
|