79bc0ad81b171ed39917010905507f724c4227a7
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / reverse_spec.rb
1 require 'spec_helper'
2
3 describe 'reverse' 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, /Requires either array or string to work/) }
11   it { is_expected.to run.with_params({}).and_raise_error(Puppet::ParseError, /Requires either array or string to work/) }
12   it { is_expected.to run.with_params(true).and_raise_error(Puppet::ParseError, /Requires either array or string to work/) }
13   it { is_expected.to run.with_params([]).and_return([]) }
14   it { is_expected.to run.with_params(['a']).and_return(['a']) }
15   it { is_expected.to run.with_params(['one']).and_return(['one']) }
16   it { is_expected.to run.with_params(['one', 'two', 'three']).and_return(['three', 'two', 'one']) }
17   it { is_expected.to run.with_params(['one', 'two', 'three', 'four']).and_return(['four', 'three', 'two', 'one']) }
18   it { is_expected.to run.with_params(['ổňë', 'ťŵọ', 'ŧңяəė', 'ƒŏůŗ']).and_return(['ƒŏůŗ', 'ŧңяəė', 'ťŵọ', 'ổňë']) }
19
20   it { is_expected.to run.with_params('').and_return('') }
21   it { is_expected.to run.with_params('a').and_return('a') }
22   it { is_expected.to run.with_params('abc').and_return('cba') }
23   it { is_expected.to run.with_params('abcd').and_return('dcba') }
24   it { is_expected.to run.with_params('āβćđ').and_return('đćβā') }
25
26   context 'when using a class extending String' do
27     it 'should call its reverse method' do
28       value = AlsoString.new('asdfghjkl')
29       value.expects(:reverse).returns('foo')
30       expect(subject).to run.with_params(value).and_return('foo')
31     end
32   end
33 end