Sha256: daf09228574a71fb51e05614e182c569d33773eb7779f9c2694453bf445f531f

Contents?: true

Size: 700 Bytes

Versions: 28

Compression:

Stored size: 700 Bytes

Contents

require 'spec_helper'

describe 'Puppet::Parser::Functions#hiera_hash' do
  let :scope do Puppet::Parser::Scope.new_for_test_harness('foo') end

  it 'should require a key argument' do
    expect { scope.function_hiera_hash([]) }.to raise_error(ArgumentError)
  end

  it 'should raise a useful error when nil is returned' do
    Hiera.any_instance.expects(:lookup).returns(nil)
    expect { scope.function_hiera_hash(["badkey"]) }.to raise_error(Puppet::ParseError, /Could not find data item badkey/ )
  end

  it 'should use the hash resolution_type' do
    Hiera.any_instance.expects(:lookup).with() { |*args| args[4].should be :hash }.returns({})
    scope.function_hiera_hash(['key'])
  end
end

Version data entries

28 entries across 28 versions & 2 rubygems

Version Path
puppet-3.4.3 spec/unit/parser/functions/hiera_hash_spec.rb
puppet-3.4.2 spec/unit/parser/functions/hiera_hash_spec.rb
puppet-3.4.1 spec/unit/parser/functions/hiera_hash_spec.rb
puppet-3.4.0 spec/unit/parser/functions/hiera_hash_spec.rb
puppet-3.4.0.rc2 spec/unit/parser/functions/hiera_hash_spec.rb
puppet-3.4.0.rc1 spec/unit/parser/functions/hiera_hash_spec.rb
puppet-3.3.2 spec/unit/parser/functions/hiera_hash_spec.rb
puppet-3.3.1 spec/unit/parser/functions/hiera_hash_spec.rb
puppet-3.3.1.rc3 spec/unit/parser/functions/hiera_hash_spec.rb
puppet-3.3.1.rc2 spec/unit/parser/functions/hiera_hash_spec.rb
puppet-3.3.1.rc1 spec/unit/parser/functions/hiera_hash_spec.rb
puppet-3.3.0 spec/unit/parser/functions/hiera_hash_spec.rb
puppet-3.3.0.rc3 spec/unit/parser/functions/hiera_hash_spec.rb
puppet-3.3.0.rc2 spec/unit/parser/functions/hiera_hash_spec.rb
puppet-3.2.4 spec/unit/parser/functions/hiera_hash_spec.rb
puppet-3.2.3 spec/unit/parser/functions/hiera_hash_spec.rb
puppet-3.2.3.rc1 spec/unit/parser/functions/hiera_hash_spec.rb
puppet-3.2.2 spec/unit/parser/functions/hiera_hash_spec.rb
puppet-3.2.1 spec/unit/parser/functions/hiera_hash_spec.rb
puppet-3.2.1.rc1 spec/unit/parser/functions/hiera_hash_spec.rb