source: other-projects/hathitrust/vagrant-solr-cluster/trunk/modules/stdlib/spec/functions/suffix_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.8 KB
Line 
1require 'spec_helper'
2
3describe 'suffix' 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/) }
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'], 'post').and_return(['onepost']) }
17 it { is_expected.to run.with_params(['one', 'two', 'three'], 'post').and_return(['onepost', 'twopost', 'threepost']) }
18 it {
19 is_expected.to run.with_params({}).and_return({})
20 }
21 it {
22 is_expected.to run.with_params({ 'key1' => 'value1', 2 => 3}).and_return({ 'key1' => 'value1', '2' => 3 })
23 }
24 it {
25 is_expected.to run.with_params({}, '').and_return({})
26 }
27 it {
28 is_expected.to run.with_params({ 'key' => 'value' }, '').and_return({ 'key' => 'value' })
29 }
30 it {
31 is_expected.to run.with_params({ 'key' => 'value' }, 'post').and_return({ 'keypost' => 'value' })
32 }
33 it {
34 is_expected.to run \
35 .with_params({ 'key1' => 'value1', 'key2' => 'value2', 'key3' => 'value3' }, 'post') \
36 .and_return({ 'key1post' => 'value1', 'key2post' => 'value2', 'key3post' => 'value3' })
37 }
38end
Note: See TracBrowser for help on using the repository browser.