Sha256: 06ca087045757bbab3d1a2026e4a6e756f6443a66ed8c70633e59d0269b9d967
Contents?: true
Size: 1.12 KB
Versions: 304
Compression:
Stored size: 1.12 KB
Contents
require 'spec_helper' describe "the 'tagged' function" do before :each do node = Puppet::Node.new('localhost') compiler = Puppet::Parser::Compiler.new(node) @scope = Puppet::Parser::Scope.new(compiler) end it "should exist" do expect(Puppet::Parser::Functions.function(:tagged)).to eq("function_tagged") end it 'is not available when --tasks is on' do Puppet[:tasks] = true expect do @scope.function_tagged(['one', 'two']) end.to raise_error(Puppet::ParseError, /is only available when compiling a catalog/) end it 'should be case-insensitive' do resource = Puppet::Parser::Resource.new(:file, "/file", :scope => @scope) allow(@scope).to receive(:resource).and_return(resource) @scope.function_tag ["one"] expect(@scope.function_tagged(['One'])).to eq(true) end it 'should check if all specified tags are included' do resource = Puppet::Parser::Resource.new(:file, "/file", :scope => @scope) allow(@scope).to receive(:resource).and_return(resource) @scope.function_tag ["one"] expect(@scope.function_tagged(['one', 'two'])).to eq(false) end end
Version data entries
304 entries across 304 versions & 1 rubygems