Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / to_bytes_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index b1015a3..f042fe0
@@ -1,17 +1,15 @@
-#! /usr/bin/env ruby -S rspec
 require 'spec_helper_acceptance'
 
 describe 'to_bytes function' do
   describe 'success' do
-    it 'converts kB to B' do
-      pp = <<-EOS
+    pp = <<-DOC
       $o = to_bytes('4 kB')
       notice(inline_template('to_bytes is <%= @o.inspect %>'))
-      EOS
-
+    DOC
+    it 'converts kB to B' do
       apply_manifest(pp, :catch_failures => true) do |r|
-        m = r.stdout.match(/to_bytes is (\d+)\D/)
-        expect(m[1]).to eq("4096")
+        m = r.stdout.match(%r{to_bytes is (\d+)\D})
+        expect(m[1]).to eq('4096')
       end
     end
     it 'works without the B in unit'