Sha256: 1ed8354fa69b61d51f927d785198c2e180abeec5031915c7ceb54adfd5d6a602
Contents?: true
Size: 642 Bytes
Versions: 6
Compression:
Stored size: 642 Bytes
Contents
#! /usr/bin/env ruby -S rspec require 'spec_helper_acceptance' describe 'join function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do describe 'success' do it 'joins arrays' do pp = <<-EOS $a = ['aaa','bbb','ccc'] $b = ':' $c = 'aaa:bbb:ccc' $o = join($a,$b) if $o == $c { notify { 'output correct': } } EOS apply_manifest(pp, :catch_failures => true) do |r| expect(r.stdout).to match(/Notice: output correct/) end end it 'handles non arrays' end describe 'failure' do it 'handles improper argument counts' end end
Version data entries
6 entries across 6 versions & 1 rubygems