source: other-projects/hathitrust/vagrant-solr-cluster/trunk/modules/stdlib/spec/acceptance/capitalize_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: 998 bytes
Line 
1#! /usr/bin/env ruby -S rspec
2require 'spec_helper_acceptance'
3
4describe 'capitalize function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
5 describe 'success' do
6 it 'should capitalize the first letter of a string' do
7 pp = <<-EOS
8 $input = 'this is a string'
9 $output = capitalize($input)
10 notify { $output: }
11 EOS
12
13 apply_manifest(pp, :catch_failures => true) do |r|
14 expect(r.stdout).to match(/Notice: This is a string/)
15 end
16 end
17
18 it 'should capitalize the first letter of an array of strings' do
19 pp = <<-EOS
20 $input = ['this', 'is', 'a', 'string']
21 $output = capitalize($input)
22 notify { $output: }
23 EOS
24
25 apply_manifest(pp, :catch_failures => true) do |r|
26 expect(r.stdout).to match(/Notice: This/)
27 expect(r.stdout).to match(/Notice: Is/)
28 expect(r.stdout).to match(/Notice: A/)
29 expect(r.stdout).to match(/Notice: String/)
30 end
31 end
32 end
33end
Note: See TracBrowser for help on using the repository browser.