summaryrefslogtreecommitdiff
path: root/spec/unit
diff options
context:
space:
mode:
authorThom May <thom@may.lt>2015-11-12 10:09:30 +0000
committerThom May <thom@may.lt>2015-11-12 10:09:30 +0000
commit1486782645f7e8eb2fcd10116b2eacd2af594c87 (patch)
treec38953112e763ca315d4c79d27b273650f909ec1 /spec/unit
parent9c446cea67755e2835f43d5534f77f09573d8df1 (diff)
parentd6f11b2716b16520825b3502de10b3821b24d43c (diff)
downloadchef-1486782645f7e8eb2fcd10116b2eacd2af594c87.tar.gz
Merge pull request #4014 from nsdavidson/issue-3923
Adding ksh resource for #3923
Diffstat (limited to 'spec/unit')
-rw-r--r--spec/unit/resource/ksh_spec.rb40
1 files changed, 40 insertions, 0 deletions
diff --git a/spec/unit/resource/ksh_spec.rb b/spec/unit/resource/ksh_spec.rb
new file mode 100644
index 0000000000..04bd8148fd
--- /dev/null
+++ b/spec/unit/resource/ksh_spec.rb
@@ -0,0 +1,40 @@
+#
+# Author:: Nolan Davidson (<nolan.davidson@gmail.com>)
+# Copyright:: Copyright (c) 2015 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::Ksh do
+
+ before(:each) do
+ @resource = Chef::Resource::Ksh.new("fakey_fakerton")
+ end
+
+ it "should create a new Chef::Resource::Ksh" do
+ expect(@resource).to be_a_kind_of(Chef::Resource)
+ expect(@resource).to be_a_kind_of(Chef::Resource::Ksh)
+ end
+
+ it "should have a resource name of :ksh" do
+ expect(@resource.resource_name).to eql(:ksh)
+ end
+
+ it "should have an interpreter of ksh" do
+ expect(@resource.interpreter).to eql("ksh")
+ end
+
+end