ac2b6e443418a31e3d600062eb710b3ddca5a36d
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / dig_spec.rb
1 require 'spec_helper'
2
3 describe 'dig' do
4   it 'exists' do
5     expect(Puppet::Parser::Functions.function('dig')).to eq('function_dig')
6   end
7
8   it 'gives a deprecation warning when called' do
9     expect(scope).to receive(:warning).with('dig() DEPRECATED: This function has been replaced in Puppet 4.5.0, please use dig44() for backwards compatibility or use the new version.')
10     scope.function_dig([{}, []])
11   end
12 end