Sha256: dfadec7eb23e66630fcc94aefb8ed8766dcc1b81fe9c74e52f29e04c6ec31f37
Contents?: true
Size: 1.23 KB
Versions: 1
Compression:
Stored size: 1.23 KB
Contents
require 'vagrant-openstack-illuin-provider/spec_helper' describe VagrantPlugins::Openstack::Action::StartServer do let(:nova) do double('nova').tap do |nova| nova.stub(:start_server) end end let(:env) do {}.tap do |env| env[:ui] = double('ui').tap do |ui| ui.stub(:info).with(anything) ui.stub(:error).with(anything) end env[:openstack_client] = double('openstack_client').tap do |os| os.stub(:nova) { nova } end env[:machine] = OpenStruct.new end end let(:app) do double('app').tap do |app| app.stub(:call).with(anything) end end describe 'call' do context 'when server id is present' do it 'starts the server' do env[:machine].id = 'server_id' expect(nova).to receive(:start_server).with(env, 'server_id') expect(app).to receive(:call) @action = StartServer.new(app, nil) @action.call(env) end end context 'when server id is not present' do it 'does nothing' do env[:machine].id = nil expect(nova).to_not receive(:start_server) expect(app).to receive(:call) @action = StartServer.new(app, nil) @action.call(env) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vagrant-openstack-illuin-provider-0.12.0 | spec/vagrant-openstack-illuin-provider/action/start_server_spec.rb |