Sha256: d3eaf0814c58490698dda1b5712a0b1ce8cc7b1bf73ea8bbc56c12b39b82b9f2

Contents?: true

Size: 965 Bytes

Versions: 40

Compression:

Stored size: 965 Bytes

Contents

#! /usr/bin/env ruby
require 'spec_helper'

describe "the 'tag' function" do
  before :all do
    Puppet::Parser::Functions.autoloader.loadall
  end

  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(:tag)).to eq("function_tag")
  end

  it "should tag the resource with any provided tags" do
    resource = Puppet::Parser::Resource.new(:file, "/file", :scope => @scope)
    @scope.expects(:resource).returns resource

    @scope.function_tag ["one", "two"]

    expect(resource).to be_tagged("one")
    expect(resource).to be_tagged("two")
  end

  it 'is not available when --tasks is on' do
    Puppet[:tasks] = true
    expect do
      @scope.function_tag(['one', 'two'])
    end.to raise_error(Puppet::ParseError, /is only available when compiling a catalog/)
  end
end

Version data entries

40 entries across 40 versions & 1 rubygems

Version Path
puppet-5.5.12 spec/unit/parser/functions/tag_spec.rb
puppet-5.5.12-x86-mingw32 spec/unit/parser/functions/tag_spec.rb
puppet-5.5.12-x64-mingw32 spec/unit/parser/functions/tag_spec.rb
puppet-5.5.12-universal-darwin spec/unit/parser/functions/tag_spec.rb
puppet-5.5.10 spec/unit/parser/functions/tag_spec.rb
puppet-5.5.10-x86-mingw32 spec/unit/parser/functions/tag_spec.rb
puppet-5.5.10-x64-mingw32 spec/unit/parser/functions/tag_spec.rb
puppet-5.5.10-universal-darwin spec/unit/parser/functions/tag_spec.rb
puppet-5.5.8 spec/unit/parser/functions/tag_spec.rb
puppet-5.5.8-x86-mingw32 spec/unit/parser/functions/tag_spec.rb
puppet-5.5.8-x64-mingw32 spec/unit/parser/functions/tag_spec.rb
puppet-5.5.8-universal-darwin spec/unit/parser/functions/tag_spec.rb
puppet-5.5.7 spec/unit/parser/functions/tag_spec.rb
puppet-5.5.7-x86-mingw32 spec/unit/parser/functions/tag_spec.rb
puppet-5.5.7-x64-mingw32 spec/unit/parser/functions/tag_spec.rb
puppet-5.5.7-universal-darwin spec/unit/parser/functions/tag_spec.rb
puppet-5.5.6 spec/unit/parser/functions/tag_spec.rb
puppet-5.5.6-x86-mingw32 spec/unit/parser/functions/tag_spec.rb
puppet-5.5.6-x64-mingw32 spec/unit/parser/functions/tag_spec.rb
puppet-5.5.6-universal-darwin spec/unit/parser/functions/tag_spec.rb