diff options
Diffstat (limited to 'spec/unit/provider/package_spec.rb')
-rw-r--r-- | spec/unit/provider/package_spec.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/unit/provider/package_spec.rb b/spec/unit/provider/package_spec.rb index 27d28c698c..122e58efb7 100644 --- a/spec/unit/provider/package_spec.rb +++ b/spec/unit/provider/package_spec.rb @@ -517,6 +517,10 @@ describe "Subclass with use_multipackage_api" do end context "#a_to_s utility for subclasses" do + before(:each) do + Chef::Config[:treat_deprecation_warnings_as_errors] = false + end + it "converts varargs of strings to a single string" do expect(provider.send(:a_to_s, "a", nil, "b", "", "c", " ", "d e", "f-g")).to eq("a b c d e f-g") end @@ -906,6 +910,10 @@ describe "Chef::Provider::Package - Multi" do end describe "shell_out helpers" do + before(:each) do + Chef::Config[:treat_deprecation_warnings_as_errors] = false + end + [ :shell_out_with_timeout, :shell_out_with_timeout! ].each do |method| stubbed_method = method == :shell_out_with_timeout! ? :shell_out! : :shell_out [ %w{command arg1 arg2}, "command arg1 arg2" ].each do |command| |