source: other-projects/hathitrust/vagrant-solr-cluster/trunk/modules/stdlib/spec/functions/prefix_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.7 KB
Line 
1require 'spec_helper'
2
3describe 'prefix' do
4 it { is_expected.not_to eq(nil) }
5 it { is_expected.to run.with_params().and_raise_error(Puppet::ParseError, /wrong number of arguments/i) }
6 it {
7 pending("Current implementation ignores parameters after the second.")
8 is_expected.to run.with_params([], 'a', '').and_raise_error(Puppet::ParseError, /wrong number of arguments/i)
9 }
10 it { is_expected.to run.with_params('', '').and_raise_error(Puppet::ParseError, /expected first argument to be an Array or a Hash/) }
11 it { is_expected.to run.with_params([], 2).and_raise_error(Puppet::ParseError, /expected second argument to be a String/) }
12 it { is_expected.to run.with_params([]).and_return([]) }
13 it { is_expected.to run.with_params(['one', 2]).and_return(['one', '2']) }
14 it { is_expected.to run.with_params([], '').and_return([]) }
15 it { is_expected.to run.with_params([''], '').and_return(['']) }
16 it { is_expected.to run.with_params(['one'], 'pre').and_return(['preone']) }
17 it { is_expected.to run.with_params(['one', 'two', 'three'], 'pre').and_return(['preone', 'pretwo', 'prethree']) }
18 it { is_expected.to run.with_params({}).and_return({}) }
19 it { is_expected.to run.with_params({ 'key1' => 'value1', 2 => 3}).and_return({ 'key1' => 'value1', '2' => 3 }) }
20 it { is_expected.to run.with_params({}, '').and_return({}) }
21 it { is_expected.to run.with_params({ 'key' => 'value' }, '').and_return({ 'key' => 'value' }) }
22 it { is_expected.to run.with_params({ 'key' => 'value' }, 'pre').and_return({ 'prekey' => 'value' }) }
23 it {
24 is_expected.to run \
25 .with_params({ 'key1' => 'value1', 'key2' => 'value2', 'key3' => 'value3' }, 'pre') \
26 .and_return({ 'prekey1' => 'value1', 'prekey2' => 'value2', 'prekey3' => 'value3' })
27 }
28end
Note: See TracBrowser for help on using the repository browser.