]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/stdlib/spec/functions/count_spec.rb
upgrade to stdlib 4.6.1
[dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / count_spec.rb
1 #! /usr/bin/env ruby -S rspec
2
3 require 'spec_helper'
4
5 describe "the count function" do
6   let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
7
8   it "should exist" do
9     expect(Puppet::Parser::Functions.function("count")).to eq("function_count")
10   end
11
12   it "should raise a ArgumentError if there is more than 2 arguments" do
13     expect { scope.function_count(['foo', 'bar', 'baz']) }.to( raise_error(ArgumentError))
14   end
15
16   it "should be able to count arrays" do
17     expect(scope.function_count([["1","2","3"]])).to(eq(3))
18   end
19
20   it "should be able to count matching elements in arrays" do
21     expect(scope.function_count([["1", "2", "2"], "2"])).to(eq(2))
22   end
23
24   it "should not count nil or empty strings" do
25     expect(scope.function_count([["foo","bar",nil,""]])).to(eq(2))
26   end
27
28   it 'does not count an undefined hash key or an out of bound array index (which are both :undef)' do
29     expect(scope.function_count([["foo",:undef,:undef]])).to eq(1)
30   end
31 end