From d0389f4d16efbeccf47d6cd2f1b0854ccb1c88d5 Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Thu, 7 Jan 2010 17:23:31 -0800 Subject: 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 --- spec/integration/parser/functions/include.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'spec/integration/parser/functions/include.rb') 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") -- cgit