Sha256: 4b46621b456e0f44ae6f94315d5e56e013988073e5a5a63d54c8b84c249cf2e2
Contents?: true
Size: 1.22 KB
Versions: 165
Compression:
Stored size: 1.22 KB
Contents
# # Copyright:: Copyright (c) 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" describe Chef::Resource::SwapFile do let(:resource) { Chef::Resource::SwapFile.new("fakey_fakerton") } it "sets resource name as :swap_file" do expect(resource.resource_name).to eql(:swap_file) end it "the path property is the name_property" do expect(resource.path).to eql("fakey_fakerton") end it "sets the default action as :create" do expect(resource.action).to eql([:create]) end it "supports :create, :remove actions" do expect { resource.action :create }.not_to raise_error expect { resource.action :remove }.not_to raise_error end end
Version data entries
165 entries across 165 versions & 1 rubygems