source: other-projects/hathitrust/vagrant-hadoop-cluster/trunk/modules/stdlib/spec/functions/is_a_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

File size: 748 bytes
Line 
1require 'spec_helper'
2
3if 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
9end
10
11if 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 end
25end
Note: See TracBrowser for help on using the repository browser.