2d6cb46da8cdce2c48ea70c4b2aa8dc3c5400739
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / is_a_spec.rb
1 require 'spec_helper'
2
3 if ENV["FUTURE_PARSER"] == 'yes'
4   describe 'type_of' do
5     pending 'teach rspec-puppet to load future-only functions under 3.7.5' do
6       it { is_expected.not_to eq(nil) }
7     end
8   end
9 end
10
11 if Puppet.version.to_f >= 4.0
12   describe 'is_a' do
13     it { is_expected.not_to eq(nil) }
14     it { is_expected.to run.with_params().and_raise_error(ArgumentError) }
15     it { is_expected.to run.with_params('', '').and_raise_error(ArgumentError) }
16
17     it 'succeeds when comparing a string and a string' do
18       is_expected.to run.with_params('hello world', String).and_return(true)
19     end
20
21     it 'fails when comparing an integer and a string' do
22       is_expected.to run.with_params(5, String).and_return(false)
23     end
24
25     it 'suceeds when comparing an UTF8 and double byte characters' do
26       is_expected.to run.with_params('このテキスト', String).and_return(true)
27       is_expected.to run.with_params('ŧћịś ŧêχŧ', String).and_return(true)
28     end
29   end
30 end