Update puppetlabs/stdlib module
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / has_interface_with_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index 7334d38..273ecb2
@@ -2,18 +2,19 @@ require 'spec_helper'
 
 describe 'has_interface_with' 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("one", "two", "three").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 { is_expected.to run.with_params('one', 'two', 'three').and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i) }
 
   # We need to mock out the Facts so we can specify how we expect this function
   # to behave on different platforms.
-  context "On Mac OS X Systems" do
+  context 'when on Mac OS X Systems' do
     let(:facts) { { :interfaces => 'lo0,gif0,stf0,en1,p2p0,fw0,en0,vmnet1,vmnet8,utun0' } }
+
     it { is_expected.to run.with_params('lo0').and_return(true) }
     it { is_expected.to run.with_params('lo').and_return(false) }
   end
 
-  context "On Linux Systems" do
+  context 'when on Linux Systems' do
     let(:facts) do
       {
         :interfaces => 'eth0,lo',