diff options
Diffstat (limited to 'spec/unit')
-rw-r--r-- | spec/unit/resource/homebrew_cask_spec.rb | 40 |
1 files changed, 29 insertions, 11 deletions
diff --git a/spec/unit/resource/homebrew_cask_spec.rb b/spec/unit/resource/homebrew_cask_spec.rb index ed68bc613f..0d2a774754 100644 --- a/spec/unit/resource/homebrew_cask_spec.rb +++ b/spec/unit/resource/homebrew_cask_spec.rb @@ -19,22 +19,40 @@ require "spec_helper" describe Chef::Resource::HomebrewCask do - let(:resource) { Chef::Resource::HomebrewCask.new("fakey_fakerton") } + context 'name with under bar' do + let(:resource) { Chef::Resource::HomebrewCask.new("fakey_fakerton") } - it "has a resource name of :homebrew_cask" do - expect(resource.resource_name).to eql(:homebrew_cask) - end + it "has a resource name of :homebrew_cask" do + expect(resource.resource_name).to eql(:homebrew_cask) + end + + it "the cask_name property is the name_property" do + expect(resource.cask_name).to eql("fakey_fakerton") + end + + it "sets the default action as :install" do + expect(resource.action).to eql([:install]) + end - it "the cask_name property is the name_property" do - expect(resource.cask_name).to eql("fakey_fakerton") + it "supports :install, :remove actions" do + expect { resource.action :install }.not_to raise_error + expect { resource.action :remove }.not_to raise_error + end end - it "sets the default action as :install" do - expect(resource.action).to eql([:install]) + context 'name with high fun' do + let(:resource) { Chef::Resource::HomebrewCask.new("fakey-fakerton") } + + it "the cask_name property is the name_property" do + expect(resource.cask_name).to eql("fakey-fakerton") + end end - it "supports :install, :remove actions" do - expect { resource.action :install }.not_to raise_error - expect { resource.action :remove }.not_to raise_error + context 'name with at mark' do + let(:resource) { Chef::Resource::HomebrewCask.new("fakey-fakerton@10") } + + it "the cask_name property is the name_property" do + expect(resource.cask_name).to eql("fakey-fakerton@10") + end end end |