summaryrefslogtreecommitdiff
path: root/puppet/modules/stdlib/spec/functions/unique_spec.rb
blob: 7cd3a566f38e90e2a19a085dc4bd50e4b5c023d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#! /usr/bin/env ruby -S rspec
require 'spec_helper'

describe "the unique function" do
  let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

  it "should exist" do
    expect(Puppet::Parser::Functions.function("unique")).to eq("function_unique")
  end

  it "should raise a ParseError if there is less than 1 arguments" do
    expect { scope.function_unique([]) }.to( raise_error(Puppet::ParseError))
  end

  it "should remove duplicate elements in a string" do
    result = scope.function_unique(["aabbc"])
    expect(result).to(eq('abc'))
  end

  it "should remove duplicate elements in an array" do
    result = scope.function_unique([["a","a","b","b","c"]])
    expect(result).to(eq(['a','b','c']))
  end

  it "should accept objects which extend String" do
    class AlsoString < String
    end

    value = AlsoString.new('aabbc')
    result = scope.function_unique([value])
    result.should(eq('abc'))
  end
end