Sha256: fff35d98c16a90b99477dbfb8b320c35082e5eb5ab3cc66c877587b3f45f2782
Contents?: true
Size: 845 Bytes
Versions: 92
Compression:
Stored size: 845 Bytes
Contents
#! /usr/bin/env ruby require 'spec_helper' describe Puppet::Parser::AST::Definition do it "should make its context available through an accessor" do definition = Puppet::Parser::AST::Definition.new('foo', :line => 5) definition.context.should == {:line => 5} end describe "when instantiated" do it "should create a definition with the proper type, name, context, and module name" do definition = Puppet::Parser::AST::Definition.new('foo', :line => 5) instantiated_definitions = definition.instantiate('modname') instantiated_definitions.length.should == 1 instantiated_definitions[0].type.should == :definition instantiated_definitions[0].name.should == 'foo' instantiated_definitions[0].line.should == 5 instantiated_definitions[0].module_name.should == 'modname' end end end
Version data entries
92 entries across 92 versions & 2 rubygems