From 75c6e4aed8bf60fbb1bd535fcdd5504f48ce9dde Mon Sep 17 00:00:00 2001 From: Markus Roberts Date: Thu, 6 Aug 2009 22:26:27 -0700 Subject: Fixes #2493 Added downcasing into find_or_load (which replaced fqfind) to get back the old behaviour. Adjusted tests so that they would catch the problem & confirmed that they fail without the downcasing. Added tests to confirm the existance of #2493; improved existing autoload tests (removed inter-test interactions) and noted (with a TODO) that there was dead code in the feature loading test; added analogus case sensitivity tests where apropriate. --- lib/puppet/parser/parser_support.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/puppet/parser') diff --git a/lib/puppet/parser/parser_support.rb b/lib/puppet/parser/parser_support.rb index 4e47cdef4..68cd3825c 100644 --- a/lib/puppet/parser/parser_support.rb +++ b/lib/puppet/parser/parser_support.rb @@ -114,6 +114,8 @@ class Puppet::Parser::Parser def find_or_load(namespace, name, type) method = "find_#{type}" + namespace = namespace.downcase + name = name.downcase fullname = (namespace + "::" + name).sub(/^::/, '') names_to_try = [fullname] -- cgit