source: other-projects/hathitrust/vagrant-hadoop-cluster/trunk/modules/stdlib/spec/functions/size_spec.rb@ 30903

Last change on this file since 30903 was 30903, checked in by davidb, 7 years ago

Vagrant provisioning files for a 4-node Hadoop cluster. See README.txt for more details

  • Property svn:executable set to *
File size: 1.8 KB
Line 
1require 'spec_helper'
2
3describe 'size' 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 first.")
8 is_expected.to run.with_params([], 'extra').and_raise_error(Puppet::ParseError, /wrong number of arguments/i)
9 }
10 it { is_expected.to run.with_params(1).and_raise_error(Puppet::ParseError, /Unknown type given/) }
11 it { is_expected.to run.with_params(true).and_raise_error(Puppet::ParseError, /Unknown type given/) }
12 it { is_expected.to run.with_params('1').and_raise_error(Puppet::ParseError, /Requires either string, array or hash to work/) }
13 it { is_expected.to run.with_params('1.0').and_raise_error(Puppet::ParseError, /Requires either string, array or hash to work/) }
14 it { is_expected.to run.with_params([]).and_return(0) }
15 it { is_expected.to run.with_params(['a']).and_return(1) }
16 it { is_expected.to run.with_params(['one', 'two', 'three']).and_return(3) }
17 it { is_expected.to run.with_params(['one', 'two', 'three', 'four']).and_return(4) }
18
19 it { is_expected.to run.with_params({}).and_return(0) }
20 it { is_expected.to run.with_params({'1' => '2'}).and_return(1) }
21 it { is_expected.to run.with_params({'1' => '2', '4' => '4'}).and_return(2) }
22
23 it { is_expected.to run.with_params('').and_return(0) }
24 it { is_expected.to run.with_params('a').and_return(1) }
25 it { is_expected.to run.with_params('abc').and_return(3) }
26 it { is_expected.to run.with_params('abcd').and_return(4) }
27
28 context 'when using a class extending String' do
29 it 'should call its size method' do
30 value = AlsoString.new('asdfghjkl')
31 value.expects(:size).returns('foo')
32 expect(subject).to run.with_params(value).and_return('foo')
33 end
34 end
35end
Note: See TracBrowser for help on using the repository browser.