Sha256: 5197a06dd0293a358745bf622809a06eaa2f115d7577957ecb0accdf4a184919

Contents?: true

Size: 710 Bytes

Versions: 4

Compression:

Stored size: 710 Bytes

Contents

#! /usr/bin/env ruby -S rspec
require 'spec_helper'

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

  let :node     do Puppet::Node.new('localhost') end
  let :compiler do Puppet::Parser::Compiler.new(node) end
  let :scope    do Puppet::Parser::Scope.new(compiler) end

  it "should exist" do
    Puppet::Parser::Functions.function("search").should == "function_search"
  end

  it "should invoke #add_namespace on the scope for all inputs" do
    scope.expects(:add_namespace).with("where")
    scope.expects(:add_namespace).with("what")
    scope.expects(:add_namespace).with("who")
    scope.function_search(["where", "what", "who"])
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
puppet-3.0.0.rc8 spec/unit/parser/functions/search_spec.rb
puppet-3.0.0.rc7 spec/unit/parser/functions/search_spec.rb
puppet-3.0.0.rc5 spec/unit/parser/functions/search_spec.rb
puppet-3.0.0.rc4 spec/unit/parser/functions/search_spec.rb