Sha256: a79aded39fd06495a82dc5be8f3c4082e674fd21bd3b91b71bfeab22ca1dcda3
Contents?: true
Size: 1.38 KB
Versions: 53
Compression:
Stored size: 1.38 KB
Contents
#! /usr/bin/env ruby require 'spec_helper' describe "the realize function" do before :all do Puppet::Parser::Functions.autoloader.loadall end before :each do @collector = stub_everything 'collector' node = Puppet::Node.new('localhost') @compiler = Puppet::Parser::Compiler.new(node) @scope = Puppet::Parser::Scope.new(@compiler) @compiler.stubs(:add_collection).with(@collector) end it "should exist" do Puppet::Parser::Functions.function("realize").should == "function_realize" end it "should create a Collector when called" do Puppet::Parser::Collector.expects(:new).returns(@collector) @scope.function_realize(["test"]) end it "should assign the passed-in resources to the collector" do Puppet::Parser::Collector.stubs(:new).returns(@collector) @collector.expects(:resources=).with(["test"]) @scope.function_realize(["test"]) end it "should flatten the resources assigned to the collector" do Puppet::Parser::Collector.stubs(:new).returns(@collector) @collector.expects(:resources=).with(["test"]) @scope.function_realize([["test"]]) end it "should let the compiler know this collector" do Puppet::Parser::Collector.stubs(:new).returns(@collector) @collector.stubs(:resources=).with(["test"]) @compiler.expects(:add_collection).with(@collector) @scope.function_realize(["test"]) end end
Version data entries
53 entries across 53 versions & 2 rubygems