Update stdlib
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / type_spec.rb
index 67e3248..5cc9470 100755 (executable)
@@ -1,29 +1,29 @@
 #! /usr/bin/env ruby -S rspec
 require 'spec_helper_acceptance'
 
-describe 'type function', :unless => (UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) || is_future_parser_enabled?) do
+describe 'type function' do
   describe 'success' do
     it 'types arrays' do
       pp = <<-EOS
       $a = ["the","public","art","galleries"]
       # Anagram: Large picture halls, I bet
       $o = type($a)
-      notice(inline_template('type is <%= @o.inspect %>'))
+      notice(inline_template('type is <%= @o.to_s %>'))
       EOS
 
       apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/type is "array"/)
+        expect(r.stdout).to match(/type is Tuple\[String.*, String.*, String.*, String.*\]/)
       end
     end
     it 'types strings' do
       pp = <<-EOS
       $a = "blowzy night-frumps vex'd jack q"
       $o = type($a)
-      notice(inline_template('type is <%= @o.inspect %>'))
+      notice(inline_template('type is <%= @o.to_s %>'))
       EOS
 
       apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/type is "string"/)
+        expect(r.stdout).to match(/type is String/)
       end
     end
     it 'types hashes'