X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fstdlib%2Fspec%2Facceptance%2Ftype_spec.rb;fp=3rdparty%2Fmodules%2Fstdlib%2Fspec%2Facceptance%2Ftype_spec.rb;h=7b6e1fbb8560d621504b5cc899b0b87b6b094d79;hb=131e09855e065be940e104d9ab0f18940cc76257;hp=5cc947028fad6b75007c0bb350c32b6d2850a204;hpb=407d322498f4fde815abf381007fbecfe5c10b2b;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/stdlib/spec/acceptance/type_spec.rb b/3rdparty/modules/stdlib/spec/acceptance/type_spec.rb old mode 100755 new mode 100644 index 5cc947028..7b6e1fbb8 --- a/3rdparty/modules/stdlib/spec/acceptance/type_spec.rb +++ b/3rdparty/modules/stdlib/spec/acceptance/type_spec.rb @@ -1,29 +1,27 @@ -#! /usr/bin/env ruby -S rspec require 'spec_helper_acceptance' describe 'type function' do describe 'success' do - it 'types arrays' do - pp = <<-EOS + pp1 = <<-DOC $a = ["the","public","art","galleries"] # Anagram: Large picture halls, I bet $o = type($a) notice(inline_template('type is <%= @o.to_s %>')) - EOS - - apply_manifest(pp, :catch_failures => true) do |r| - expect(r.stdout).to match(/type is Tuple\[String.*, String.*, String.*, String.*\]/) + DOC + it 'types arrays' do + apply_manifest(pp1, :catch_failures => true) do |r| + expect(r.stdout).to match(%r{type is Tuple\[String.*, String.*, String.*, String.*\]}) end end - it 'types strings' do - pp = <<-EOS + + pp2 = <<-DOC $a = "blowzy night-frumps vex'd jack q" $o = type($a) 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/) + DOC + it 'types strings' do + apply_manifest(pp2, :catch_failures => true) do |r| + expect(r.stdout).to match(%r{type is String}) end end it 'types hashes'