source: other-projects/hathitrust/vagrant-solr-cluster/trunk/modules/stdlib/spec/functions/grep_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.1 KB
Line 
1require 'spec_helper'
2
3describe 'grep' 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 { is_expected.to run.with_params('one').and_raise_error(Puppet::ParseError, /wrong number of arguments/i) }
7 it {
8 pending("grep does not actually check this, and raises NoMethodError instead")
9 is_expected.to run.with_params('one', 'two').and_raise_error(Puppet::ParseError, /first argument not an array/)
10 }
11 it {
12 pending("grep does not actually check this, and raises NoMethodError instead")
13 is_expected.to run.with_params(1, 'two').and_raise_error(Puppet::ParseError, /first argument not an array/)
14 }
15 it { is_expected.to run.with_params('one', 'two', 'three').and_raise_error(Puppet::ParseError, /wrong number of arguments/i) }
16 it { is_expected.to run.with_params([], 'two').and_return([]) }
17 it { is_expected.to run.with_params(['one', 'two', 'three'], 'two').and_return(['two']) }
18 it { is_expected.to run.with_params(['one', 'two', 'three'], 't(wo|hree)').and_return(['two', 'three']) }
19end
Note: See TracBrowser for help on using the repository browser.