summaryrefslogtreecommitdiff
path: root/spec/unit
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit')
-rw-r--r--spec/unit/resource/homebrew_cask_spec.rb26
1 files changed, 0 insertions, 26 deletions
diff --git a/spec/unit/resource/homebrew_cask_spec.rb b/spec/unit/resource/homebrew_cask_spec.rb
index 5b6ddac7d2..0d2a774754 100644
--- a/spec/unit/resource/homebrew_cask_spec.rb
+++ b/spec/unit/resource/homebrew_cask_spec.rb
@@ -43,42 +43,16 @@ describe Chef::Resource::HomebrewCask do
context 'name with high fun' 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 "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 "supports :install, :remove actions" do
- expect { resource.action :install }.not_to raise_error
- expect { resource.action :remove }.not_to raise_error
- end
end
context 'name with at mark' do
let(:resource) { Chef::Resource::HomebrewCask.new("fakey-fakerton@10") }
- 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@10")
end
-
- it "sets the default action as :install" do
- expect(resource.action).to eql([:install])
- end
-
- it "supports :install, :remove actions" do
- expect { resource.action :install }.not_to raise_error
- expect { resource.action :remove }.not_to raise_error
- end
end
end