summaryrefslogtreecommitdiffstats
path: root/spec/unit/resource_reference.rb
Commit message (Collapse)AuthorAgeFilesLines
* Fix ticket 974. My original "fix" wasn't. This actually fixes the problem by ↵Paul Lathrop2008-02-051-0/+6
| | | | using a regular expression that matches only up to the first square bracket.
* Renaming 'configuration' to 'catalog', fixing #954.Luke Kanies2007-12-111-5/+5
|
* Theoretically, this patch is to fix #917 (which it does), butLuke Kanies2007-11-281-0/+24
| | | | | | | | | | | | | | | | | | | there were enough problems fixing it that I decided something more drastic needed to be done. This uses the new Puppet::ResourceReference class to canonize what a resource reference looks like and how to retrieve resources via their references. Specifically, it guarantees that resource types are always capitalized, even when they include '::' in them. While many files are modified in this commit, the majority of changes are quite small, and most of the changes are fixing the tests to use capitalized types. As we look at consolidating some of our resource types, we could consolidate the ResourceReference stuff at the same time, but at least the Puppet::Parser::ResourceReference class subclasses the main Puppet::ResourceReference class.
* Adding a top-level ResourceReference class that everythingLuke Kanies2007-11-281-0/+43
else can use to canonize how we refer to resources. Finally.