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

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

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

File size: 750 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 'type_of' 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 'gives the type of a string' do
18 expect(subject.call({}, 'hello world')).to be_kind_of(Puppet::Pops::Types::PStringType)
19 end
20
21 it 'gives the type of an integer' do
22 expect(subject.call({}, 5)).to be_kind_of(Puppet::Pops::Types::PIntegerType)
23 end
24 end
25end
Note: See TracBrowser for help on using the repository browser.