source: other-projects/hathitrust/vagrant-solr-cluster/trunk/modules/stdlib/spec/functions/max_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.0 KB
Line 
1require 'spec_helper'
2
3describe 'max' 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(1).and_return(1) }
7 it { is_expected.to run.with_params(1, 2).and_return(2) }
8 it { is_expected.to run.with_params(1, 2, 3).and_return(3) }
9 it { is_expected.to run.with_params(3, 2, 1).and_return(3) }
10 it { is_expected.to run.with_params('one').and_return('one') }
11 it { is_expected.to run.with_params('one', 'two').and_return('two') }
12 it { is_expected.to run.with_params('one', 'two', 'three').and_return('two') }
13 it { is_expected.to run.with_params('three', 'two', 'one').and_return('two') }
14
15 describe 'implementation artifacts' do
16 it { is_expected.to run.with_params(1, 'one').and_return('one') }
17 it { is_expected.to run.with_params('1', 'one').and_return('one') }
18 it { is_expected.to run.with_params('1.3e1', '1.4e0').and_return('1.4e0') }
19 it { is_expected.to run.with_params(1.3e1, 1.4e0).and_return(1.3e1) }
20 end
21end
Note: See TracBrowser for help on using the repository browser.