ad16fdd43425e283c9c0581fbd2d28b1cb1fed66
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / dig_spec.rb
1 require 'spec_helper'
2
3 describe 'dig' do
4
5   it "should exist" do
6     expect(Puppet::Parser::Functions.function("dig")).to eq("function_dig")
7   end
8
9   it "should give a deprecation warning when called" do
10     scope.expects(: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.")
11     scope.function_dig([{}, []])
12   end
13 end