summaryrefslogtreecommitdiff
path: root/spec/functional/knife
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2013-06-27 16:46:33 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2013-06-28 11:00:49 -0700
commitd755deea1c040646a4da393ad6ede1c9f4495def (patch)
tree1067fb9548b46932fa1115b383589b6f9d095ed7 /spec/functional/knife
parentefd9477221322709182285892bacecf367502193 (diff)
downloadchef-d755deea1c040646a4da393ad6ede1c9f4495def.tar.gz
ruby >= 1.9 is more useful than ruby == 1.9 in a ruby 1.9+2.0 world
Diffstat (limited to 'spec/functional/knife')
-rw-r--r--spec/functional/knife/exec_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/functional/knife/exec_spec.rb b/spec/functional/knife/exec_spec.rb
index 114a30d791..5cb993c3ed 100644
--- a/spec/functional/knife/exec_spec.rb
+++ b/spec/functional/knife/exec_spec.rb
@@ -46,7 +46,7 @@ describe Chef::Knife::Exec do
pending "executes a script in the context of the chef-shell main context", :ruby_18_only
- it "executes a script in the context of the chef-shell main context", :ruby_19_only do
+ it "executes a script in the context of the chef-shell main context", :ruby_gte_19_only do
@node = Chef::Node.new
@node.name("ohai-world")
response = {"rows" => [@node],"start" => 0,"total" => 1}