Sha256: 3dc66c801efe01191d2a6525fa2cba7a21378bc54abcf01ee22dcba2de3154e5
Contents?: true
Size: 763 Bytes
Versions: 92
Compression:
Stored size: 763 Bytes
Contents
#! /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 Puppet::Parser::Functions.function(:fail).should == "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
Version data entries
92 entries across 92 versions & 2 rubygems