Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / sort_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index 9abd039..0e6e8e6
@@ -1,13 +1,22 @@
 require 'spec_helper'
 
-describe 'sort' do
+describe 'sort', :if => Puppet::Util::Package.versioncmp(Puppet.version, '6.0.0') < 0 do
   describe 'signature validation' do
     it { is_expected.not_to eq(nil) }
-    it { is_expected.to run.with_params().and_raise_error(Puppet::ParseError, /wrong number of arguments/i) }
-    it { is_expected.to run.with_params([], 'extra').and_raise_error(Puppet::ParseError, /wrong number of arguments/i) }
-    it { pending('stricter input checking'); is_expected.to run.with_params({}).and_raise_error(Puppet::ParseError, /requires string or array/) }
-    it { pending('stricter input checking'); is_expected.to run.with_params(1).and_raise_error(Puppet::ParseError, /requires string or array/) }
-    it { pending('stricter input checking'); is_expected.to run.with_params(true).and_raise_error(Puppet::ParseError, /requires string or array/) }
+    it { is_expected.to run.with_params.and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i) }
+    it { is_expected.to run.with_params([], 'extra').and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i) }
+    it {
+      pending('stricter input checking')
+      is_expected.to run.with_params({}).and_raise_error(Puppet::ParseError, %r{requires string or array})
+    }
+    it {
+      pending('stricter input checking')
+      is_expected.to run.with_params(1).and_raise_error(Puppet::ParseError, %r{requires string or array})
+    }
+    it {
+      pending('stricter input checking')
+      is_expected.to run.with_params(true).and_raise_error(Puppet::ParseError, %r{requires string or array})
+    }
   end
 
   context 'when called with an array' do
@@ -21,4 +30,8 @@ describe 'sort' do
     it { is_expected.to run.with_params('a').and_return('a') }
     it { is_expected.to run.with_params('cbda').and_return('abcd') }
   end
+
+  context 'when called with a number' do
+    it { is_expected.to run.with_params('9478').and_return('4789') }
+  end
 end