summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorBryan McLellan <btm@loftninjas.org>2014-09-25 13:18:18 -0400
committerBryan McLellan <btm@loftninjas.org>2014-09-30 20:13:17 -0400
commit6591d4b2ea640cc838bcfd7ff667ed1e9966486f (patch)
treea5bc2444f6c27df901ed794786c44a36454e0907 /spec
parentd23eb2cdbdb2a9f49653426756c1d84cb2cab4be (diff)
downloadchef-6591d4b2ea640cc838bcfd7ff667ed1e9966486f.tar.gz
update functional tests for guard_interpreter
we now raise an error when passed a block and a guard_interpreter is specified other than :default. When other interpreters become the "default" (which actually means use the default shell for that platform) we will need to consider those as well, i.e. #1495.
Diffstat (limited to 'spec')
-rw-r--r--spec/functional/resource/powershell_spec.rb26
1 files changed, 6 insertions, 20 deletions
diff --git a/spec/functional/resource/powershell_spec.rb b/spec/functional/resource/powershell_spec.rb
index 5001e870a9..c30c710959 100644
--- a/spec/functional/resource/powershell_spec.rb
+++ b/spec/functional/resource/powershell_spec.rb
@@ -162,6 +162,12 @@ describe Chef::Resource::WindowsScript::PowershellScript, :windows_only do
resource.returns(0)
resource.run_action(:run)
end
+
+ it "raises an error when given a block and a guard_interpreter" do
+ resource.guard_interpreter :sh
+ expect { resource.only_if { true } }.to raise_error(ArgumentError, /guard_interpreter does not support blocks/)
+ end
+
end
context "when running on a 32-bit version of Windows", :windows32_only do
@@ -265,26 +271,6 @@ describe Chef::Resource::WindowsScript::PowershellScript, :windows_only do
resource.should_skip?(:run).should be_false
end
- it "evaluates a not_if block as false" do
- resource.not_if { false }
- resource.should_skip?(:run).should be_false
- end
-
- it "evaluates a not_if block as true" do
- resource.not_if { true }
- resource.should_skip?(:run).should be_true
- end
-
- it "evaluates an only_if block as false" do
- resource.only_if { false }
- resource.should_skip?(:run).should be_true
- end
-
- it "evaluates an only_if block as true" do
- resource.only_if { true }
- resource.should_skip?(:run).should be_false
- end
-
it "evaluates a non-zero powershell exit status for not_if as true" do
resource.not_if "exit 37"
resource.should_skip?(:run).should be_false