source: other-projects/hathitrust/vagrant-solr-cluster/trunk/modules/stdlib/spec/functions/is_function_available.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: 473 bytes
Line 
1require 'spec_helper'
2
3describe 'is_function_available' 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', 'two').and_raise_error(Puppet::ParseError, /wrong number of arguments/i) }
7 it { is_expected.to run.with_params('include').and_return(true) }
8 it { is_expected.to run.with_params('no_such_function').and_return(false) }
9end
Note: See TracBrowser for help on using the repository browser.