Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / downcase_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index c594560..181e282
@@ -1,15 +1,15 @@
 require 'spec_helper'
 
-describe 'downcase' do
+describe 'downcase', :if => Puppet::Util::Package.versioncmp(Puppet.version, '6.0.0') < 0 do
   it { is_expected.not_to eq(nil) }
-  it { is_expected.to run.with_params().and_raise_error(Puppet::ParseError) }
-  it { is_expected.to run.with_params(100).and_raise_error(Puppet::ParseError) }
-  it { is_expected.to run.with_params("abc").and_return("abc") }
-  it { is_expected.to run.with_params("Abc").and_return("abc") }
-  it { is_expected.to run.with_params("ABC").and_return("abc") }
+  it { is_expected.to run.with_params.and_raise_error(Puppet::ParseError, %r{Wrong number of arguments}) }
+  it { is_expected.to run.with_params(100).and_raise_error(Puppet::ParseError, %r{Requires either array or string}) }
+  it { is_expected.to run.with_params('abc').and_return('abc') }
+  it { is_expected.to run.with_params('Abc').and_return('abc') }
+  it { is_expected.to run.with_params('ABC').and_return('abc') }
 
-  it { is_expected.to run.with_params(AlsoString.new("ABC")).and_return("abc") }
+  it { is_expected.to run.with_params(AlsoString.new('ABC')).and_return('abc') }
   it { is_expected.to run.with_params([]).and_return([]) }
-  it { is_expected.to run.with_params(["ONE", "TWO"]).and_return(["one", "two"]) }
-  it { is_expected.to run.with_params(["One", 1, "Two"]).and_return(["one", 1, "two"]) }
+  it { is_expected.to run.with_params(['ONE', 'TWO']).and_return(['one', 'two']) }
+  it { is_expected.to run.with_params(['One', 1, 'Two']).and_return(['one', 1, 'two']) }
 end