Update puppetlabs/stdlib module
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / swapcase_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index c175a15..8370140
@@ -2,14 +2,14 @@ require 'spec_helper'
 
 describe 'swapcase' 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.and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i) }
   it {
-    pending("Current implementation ignores parameters after the first.")
-    is_expected.to run.with_params('a', '').and_raise_error(Puppet::ParseError, /wrong number of arguments/i)
+    pending('Current implementation ignores parameters after the first.')
+    is_expected.to run.with_params('a', '').and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i)
   }
-  it { is_expected.to run.with_params(1).and_raise_error(Puppet::ParseError, /Requires either array or string to work/) }
-  it { is_expected.to run.with_params({}).and_raise_error(Puppet::ParseError, /Requires either array or string to work/) }
-  it { is_expected.to run.with_params(true).and_raise_error(Puppet::ParseError, /Requires either array or string to work/) }
+  it { is_expected.to run.with_params(1).and_raise_error(Puppet::ParseError, %r{Requires either array or string to work}) }
+  it { is_expected.to run.with_params({}).and_raise_error(Puppet::ParseError, %r{Requires either array or string to work}) }
+  it { is_expected.to run.with_params(true).and_raise_error(Puppet::ParseError, %r{Requires either array or string to work}) }
   describe 'with strings as inputs' do
     it { is_expected.to run.with_params('').and_return('') }
     it { is_expected.to run.with_params('one').and_return('ONE') }
@@ -34,7 +34,7 @@ describe 'swapcase' do
       it { is_expected.to run.with_params(['OnE', ['two']]).and_return(['oNe', ['two']]) }
     end
   end
-  it "should accept objects which extend String" do
-    is_expected.to run.with_params(AlsoString.new("OnE")).and_return('oNe')
+  it 'accepts objects which extend String' do
+    is_expected.to run.with_params(AlsoString.new('OnE')).and_return('oNe')
   end
 end