diff options
author | Markus Roberts <Markus@reality.com> | 2009-08-06 22:26:27 -0700 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2009-08-14 08:49:30 +1000 |
commit | 75c6e4aed8bf60fbb1bd535fcdd5504f48ce9dde (patch) | |
tree | cc2c0b42a674b332a5b312f45664f8d36e2d9b75 /spec/unit/parser/compiler.rb | |
parent | b62d9668e04f40f2e3aa6c0f26dd26d1f75d8e22 (diff) | |
download | puppet-75c6e4aed8bf60fbb1bd535fcdd5504f48ce9dde.tar.gz puppet-75c6e4aed8bf60fbb1bd535fcdd5504f48ce9dde.tar.xz puppet-75c6e4aed8bf60fbb1bd535fcdd5504f48ce9dde.zip |
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.
Diffstat (limited to 'spec/unit/parser/compiler.rb')
-rwxr-xr-x | spec/unit/parser/compiler.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/unit/parser/compiler.rb b/spec/unit/parser/compiler.rb index 0cc6e8a17..ad6f351bf 100755 --- a/spec/unit/parser/compiler.rb +++ b/spec/unit/parser/compiler.rb @@ -423,6 +423,16 @@ describe Puppet::Parser::Compiler do @compiler.evaluate_classes(%w{myclass}, @scope, false) end + it "should skip classes previously evaluated with different capitalization" do + @compiler.catalog.stubs(:tag) + @scope.stubs(:find_hostclass).with("MyClass").returns(@class) + @compiler.expects(:class_scope).with(@class).returns("something") + @compiler.expects(:add_resource).never + @resource.expects(:evaluate).never + Puppet::Parser::Resource.expects(:new).never + @compiler.evaluate_classes(%w{MyClass}, @scope, false) + end + it "should return the list of found classes" do @compiler.catalog.stubs(:tag) |