summaryrefslogtreecommitdiff
path: root/spec/unit/resource
diff options
context:
space:
mode:
authorNolan Davidson <nolan.davidson@gmail.com>2015-10-01 08:00:22 -0400
committerNolan Davidson <nolan.davidson@phishme.com>2015-10-06 12:24:46 -0400
commited5d27f1cfd3ec0f826cd7910e715f20eabe7505 (patch)
tree64800b33584288210647809a221d632ddbb34e36 /spec/unit/resource
parent8c042622fbf94acca813bd6d84d967d2ea08ec43 (diff)
downloadchef-ed5d27f1cfd3ec0f826cd7910e715f20eabe7505.tar.gz
Adding ksh resource and specs
Diffstat (limited to 'spec/unit/resource')
-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..6565a64d08
--- /dev/null
+++ b/spec/unit/resource/ksh_spec.rb
@@ -0,0 +1,40 @@
+#
+# Author:: Nolan Davidson (<nolan.davidson@gmail.com>)
+# Copyright:: Copyright (c) 2008 Opscode, 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