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