source: other-projects/hathitrust/vagrant-solr-cluster/trunk/modules/stdlib/spec/acceptance/join_keys_to_values_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: 739 bytes
Line 
1#! /usr/bin/env ruby -S rspec
2require 'spec_helper_acceptance'
3
4describe 'join_keys_to_values function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
5 describe 'success' do
6 it 'join_keys_to_valuess hashes' do
7 pp = <<-EOS
8 $a = {'aaa'=>'bbb','ccc'=>'ddd'}
9 $b = ':'
10 $o = join_keys_to_values($a,$b)
11 notice(inline_template('join_keys_to_values is <%= @o.sort.inspect %>'))
12 EOS
13
14 apply_manifest(pp, :catch_failures => true) do |r|
15 expect(r.stdout).to match(/join_keys_to_values is \["aaa:bbb", "ccc:ddd"\]/)
16 end
17 end
18 it 'handles non hashes'
19 it 'handles empty hashes'
20 end
21 describe 'failure' do
22 it 'handles improper argument counts'
23 end
24end
Note: See TracBrowser for help on using the repository browser.