source: other-projects/hathitrust/vagrant-solr-cluster/trunk/modules/stdlib/spec/acceptance/flatten_spec.rb@ 30960

Last change on this file since 30960 was 30960, checked in by davidb, 7 years ago

Switch to using Puppet to provision machine. Strongly based on files developed for spark-hdfs cluster

  • Property svn:executable set to *
File size: 1.0 KB
Line 
1#! /usr/bin/env ruby -S rspec
2require 'spec_helper_acceptance'
3
4describe 'flatten function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
5 describe 'success' do
6 it 'flattens arrays' do
7 pp = <<-EOS
8 $a = ["a","b",["c",["d","e"],"f","g"]]
9 $b = ["a","b","c","d","e","f","g"]
10 $o = flatten($a)
11 if $o == $b {
12 notify { 'output correct': }
13 }
14 EOS
15
16 apply_manifest(pp, :catch_failures => true) do |r|
17 expect(r.stdout).to match(/Notice: output correct/)
18 end
19 end
20 it 'does not affect flat arrays' do
21 pp = <<-EOS
22 $a = ["a","b","c","d","e","f","g"]
23 $b = ["a","b","c","d","e","f","g"]
24 $o = flatten($a)
25 if $o == $b {
26 notify { 'output correct': }
27 }
28 EOS
29
30 apply_manifest(pp, :catch_failures => true) do |r|
31 expect(r.stdout).to match(/Notice: output correct/)
32 end
33 end
34 end
35 describe 'failure' do
36 it 'handles improper argument counts'
37 it 'handles non-strings'
38 end
39end
Note: See TracBrowser for help on using the repository browser.