Sha256: 0ae836f1c2c8419cfcdd3c25c4eddfa9734e8b897833d0eeacd1b19686e481f0

Contents?: true

Size: 854 Bytes

Versions: 4

Compression:

Stored size: 854 Bytes

Contents

#! /usr/bin/env ruby -S rspec
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

4 entries across 4 versions & 1 rubygems

Version Path
puppet-3.0.0.rc8 spec/unit/parser/ast/definition_spec.rb
puppet-3.0.0.rc7 spec/unit/parser/ast/definition_spec.rb
puppet-3.0.0.rc5 spec/unit/parser/ast/definition_spec.rb
puppet-3.0.0.rc4 spec/unit/parser/ast/definition_spec.rb