2013-05-13 18:09:33 +02:00
|
|
|
#! /usr/bin/env ruby -S rspec
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe "the union function" do
|
|
|
|
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
|
|
|
|
|
|
|
|
it "should exist" do
|
2014-06-04 20:38:37 +02:00
|
|
|
expect(Puppet::Parser::Functions.function("union")).to eq("function_union")
|
2013-05-13 18:09:33 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should raise a ParseError if there are fewer than 2 arguments" do
|
2014-06-04 20:38:37 +02:00
|
|
|
expect { scope.function_union([]) }.to( raise_error(Puppet::ParseError) )
|
2013-05-13 18:09:33 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should join two arrays together" do
|
|
|
|
result = scope.function_union([["a","b","c"],["b","c","d"]])
|
2014-06-04 20:38:37 +02:00
|
|
|
expect(result).to(eq(["a","b","c","d"]))
|
2013-05-13 18:09:33 +02:00
|
|
|
end
|
|
|
|
end
|