Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / strftime_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index 53b7f90..4ba2c6a
@@ -1,16 +1,14 @@
-#! /usr/bin/env ruby -S rspec
 require 'spec_helper_acceptance'
 
-describe 'strftime function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
+describe 'strftime function', :if => Puppet::Util::Package.versioncmp(Puppet.version, '4.8.0') < 0 do
   describe 'success' do
-    it 'gives the Century' do
-      pp = <<-EOS
+    pp = <<-DOC
       $o = strftime('%C')
       notice(inline_template('strftime is <%= @o.inspect %>'))
-      EOS
-
+    DOC
+    it 'gives the Century' do
       apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/strftime is "20"/)
+        expect(r.stdout).to match(%r{strftime is "20"})
       end
     end
     it 'takes a timezone argument'