diff options
author | Luke Kanies <luke@reductivelabs.com> | 2010-01-07 17:23:31 -0800 |
---|---|---|
committer | test branch <puppet-dev@googlegroups.com> | 2010-02-17 06:50:53 -0800 |
commit | d0389f4d16efbeccf47d6cd2f1b0854ccb1c88d5 (patch) | |
tree | 3a3060ac94be20b25742f5ec956e95c8ff3633d8 /spec/integration/parser/functions/include.rb | |
parent | 67ef78d9f231661d0fdd6260d470cf0d06f1bac2 (diff) | |
download | puppet-d0389f4d16efbeccf47d6cd2f1b0854ccb1c88d5.tar.gz puppet-d0389f4d16efbeccf47d6cd2f1b0854ccb1c88d5.tar.xz puppet-d0389f4d16efbeccf47d6cd2f1b0854ccb1c88d5.zip |
Renaming Parser::ResourceType to Resource::Type
Basically, these classes (ResourceType and ResourceTypeCollection)
don't really belong in Parser, so I'm moving them to the
Resource namespace. This will be where anything RAL-related goes
from now on, and as we migrate functionality out of Puppet::Type,
it should go here.
Signed-off-by: Luke Kanies <luke@reductivelabs.com>
Diffstat (limited to 'spec/integration/parser/functions/include.rb')
-rwxr-xr-x | spec/integration/parser/functions/include.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/integration/parser/functions/include.rb b/spec/integration/parser/functions/include.rb index 64346bffb..f84d43276 100755 --- a/spec/integration/parser/functions/include.rb +++ b/spec/integration/parser/functions/include.rb @@ -14,7 +14,7 @@ describe "The include function" do end it "should add a containment relationship between the 'included' class and our class" do - @compiler.known_resource_types.add Puppet::Parser::ResourceType.new(:hostclass, "includedclass") + @compiler.known_resource_types.add Puppet::Resource::Type.new(:hostclass, "includedclass") @scope.function_include("includedclass") |