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

Version Path
puppet-3.8.7 spec/unit/parser/ast/definition_spec.rb
puppet-3.8.7-x86-mingw32 spec/unit/parser/ast/definition_spec.rb
puppet-3.8.7-x64-mingw32 spec/unit/parser/ast/definition_spec.rb
puppet-3.8.6 spec/unit/parser/ast/definition_spec.rb
puppet-3.8.6-x86-mingw32 spec/unit/parser/ast/definition_spec.rb
puppet-3.8.6-x64-mingw32 spec/unit/parser/ast/definition_spec.rb
puppet-3.8.5 spec/unit/parser/ast/definition_spec.rb
puppet-3.8.5-x86-mingw32 spec/unit/parser/ast/definition_spec.rb
puppet-3.8.5-x64-mingw32 spec/unit/parser/ast/definition_spec.rb
puppet-3.8.4 spec/unit/parser/ast/definition_spec.rb
puppet-3.8.4-x86-mingw32 spec/unit/parser/ast/definition_spec.rb
puppet-3.8.4-x64-mingw32 spec/unit/parser/ast/definition_spec.rb
puppet-3.8.3 spec/unit/parser/ast/definition_spec.rb
puppet-3.8.3-x86-mingw32 spec/unit/parser/ast/definition_spec.rb
puppet-3.8.3-x64-mingw32 spec/unit/parser/ast/definition_spec.rb
puppet-3.8.2 spec/unit/parser/ast/definition_spec.rb
puppet-3.8.2-x86-mingw32 spec/unit/parser/ast/definition_spec.rb
puppet-3.8.2-x64-mingw32 spec/unit/parser/ast/definition_spec.rb
puppet-3.8.1 spec/unit/parser/ast/definition_spec.rb
puppet-3.8.1-x86-mingw32 spec/unit/parser/ast/definition_spec.rb