diff options
author | Adam Jacob <adam@hjksolutions.com> | 2008-09-08 23:37:25 -0700 |
---|---|---|
committer | Adam Jacob <adam@hjksolutions.com> | 2008-09-08 23:37:25 -0700 |
commit | fb2f31f253b8cb4bb004a0371c1c729aa975e64c (patch) | |
tree | 924a2389c4be2325ba8f3eb63f26b520fb3590ac /spec/unit/resource/bash_spec.rb | |
parent | 0da4ec949d5a1607047b7746f8cce449164056ec (diff) | |
download | chef-fb2f31f253b8cb4bb004a0371c1c729aa975e64c.tar.gz |
Adding specs for new resource types, fixes to node, mixin::template
Diffstat (limited to 'spec/unit/resource/bash_spec.rb')
-rw-r--r-- | spec/unit/resource/bash_spec.rb | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/spec/unit/resource/bash_spec.rb b/spec/unit/resource/bash_spec.rb new file mode 100644 index 0000000000..f86e63d32e --- /dev/null +++ b/spec/unit/resource/bash_spec.rb @@ -0,0 +1,40 @@ +# +# Author:: Adam Jacob (<adam@hjksolutions.com>) +# Copyright:: Copyright (c) 2008 HJK Solutions, LLC +# 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 File.expand_path(File.join(File.dirname(__FILE__), "..", "..", "spec_helper")) + +describe Chef::Resource::Bash do + + before(:each) do + @resource = Chef::Resource::Bash.new("fakey_fakerton") + end + + it "should create a new Chef::Resource::Bash" do + @resource.should be_a_kind_of(Chef::Resource) + @resource.should be_a_kind_of(Chef::Resource::Bash) + end + + it "should have a resource name of :bash" do + @resource.resource_name.should eql(:bash) + end + + it "should have an interpreter of bash" do + @resource.interpreter.should eql("bash") + end + +end
\ No newline at end of file |