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
|
#! /usr/bin/env ruby
require 'spec_helper'
describe "the 'fail' parser function" do
before :all do
Puppet::Parser::Functions.autoloader.loadall
end
let :scope do
node = Puppet::Node.new('localhost')
compiler = Puppet::Parser::Compiler.new(node)
scope = Puppet::Parser::Scope.new(compiler)
scope.stubs(:environment).returns(nil)
scope
end
it "should exist" do
expect(Puppet::Parser::Functions.function(:fail)).to eq("function_fail")
end
it "should raise a parse error if invoked" do
expect { scope.function_fail([]) }.to raise_error Puppet::ParseError
end
it "should join arguments into a string in the error" do
expect { scope.function_fail(["hello", "world"]) }.to raise_error /hello world/
end
end
|