summaryrefslogtreecommitdiff
path: root/spec/unit/dsl/recipe_spec.rb
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2018-05-30 14:31:15 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2018-05-30 14:31:15 -0700
commitd9924be2a17e2592c58655830d4e9038db27d887 (patch)
tree324508b11fd834143f5e0ddd1fa24aef1507c669 /spec/unit/dsl/recipe_spec.rb
parentc80702c741232a5da0d410d4b8770137690430aa (diff)
downloadchef-d9924be2a17e2592c58655830d4e9038db27d887.tar.gz
convert shell_out_with_systems_locale to `default_env: true`lcg/remove-shell-out-with-systems-locale
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'spec/unit/dsl/recipe_spec.rb')
-rw-r--r--spec/unit/dsl/recipe_spec.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/spec/unit/dsl/recipe_spec.rb b/spec/unit/dsl/recipe_spec.rb
index cd01079c15..5995abe374 100644
--- a/spec/unit/dsl/recipe_spec.rb
+++ b/spec/unit/dsl/recipe_spec.rb
@@ -1,6 +1,6 @@
#
# Author:: Daniel DeLeo (<dan@chef.io>)
-# Copyright:: Copyright 2014-2016, Chef Software, Inc.
+# Copyright:: Copyright 2014-2018, Chef Software Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -53,10 +53,6 @@ describe Chef::DSL::Recipe do
it "responds to shell_out" do
expect(recipe.respond_to?(:shell_out!)).to be true
end
-
- it "responds to shell_out" do
- expect(recipe.respond_to?(:shell_out_with_systems_locale)).to be true
- end
end
context "when included in a class that defines the required interface directly" do