Sha256: 144a5fc6377475e11baee5510ea014da2a62be64fe71b1d532c3390bd6fe076e
Contents?: true
Size: 1.86 KB
Versions: 1
Compression:
Stored size: 1.86 KB
Contents
# frozen_string_literal: true # # Author:: Chef Partner Engineering (<partnereng@chef.io>) # Copyright:: Copyright (c) 2016 Chef Software, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # require "spec_helper" require "chef/knife/google_server_delete" require "support/shared_examples_for_serverdeletecommand" class Tester include Chef::Knife::Cloud::GoogleServiceHelpers end describe Chef::Knife::Cloud::GoogleServerDelete do let(:tester) { Tester.new } let(:command) { described_class.new(["test_instance"]) } let(:service) { double("service") } before do allow(command).to receive(:service).and_return(service) end it_behaves_like Chef::Knife::Cloud::ServerDeleteCommand, described_class.new(["test_instance"]) describe "#validate_params!" do it "checks for missing config values" do expect(command).to receive(:check_for_missing_config_values!) command.validate_params! end it "raises an exception if the gce_project is missing" do ui = double("ui") expect(tester).to receive(:ui).and_return(ui) expect(tester).to receive(:locate_config_value).with(:gce_project).and_return(nil) expect(ui).to receive(:error).with("The following required parameters are missing: gce_project") expect { tester.check_for_missing_config_values! }.to raise_error(RuntimeError) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
knife-google-3.3.6 | spec/google_server_delete_spec.rb |