summaryrefslogtreecommitdiffstats
path: root/spec/unit/parser/parser.rb
diff options
context:
space:
mode:
authorBrice Figureau <brice-puppet@daysofwonder.com>2009-09-15 21:01:48 +0200
committerJames Turnbull <james@lovedthanlost.net>2009-09-17 13:54:55 +1000
commit361c50210172ffe484550a19db3a8d10d86edc09 (patch)
tree24b43a67b76164a852c195cb9b05bc27c6a56a49 /spec/unit/parser/parser.rb
parent2283605ba63b39deec30bd71b5d0879630f63e6d (diff)
downloadpuppet-361c50210172ffe484550a19db3a8d10d86edc09.tar.gz
puppet-361c50210172ffe484550a19db3a8d10d86edc09.tar.xz
puppet-361c50210172ffe484550a19db3a8d10d86edc09.zip
Fix #2638 - Allow creating several nodes with matching names
When we are checking if a node exists before creating a new one we were also trying to match with regex node names, finding matches where in fact there is no equality. Signed-off-by: Brice Figureau <brice-puppet@daysofwonder.com>
Diffstat (limited to 'spec/unit/parser/parser.rb')
-rwxr-xr-xspec/unit/parser/parser.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/parser/parser.rb b/spec/unit/parser/parser.rb
index 9127599df..842dc1904 100755
--- a/spec/unit/parser/parser.rb
+++ b/spec/unit/parser/parser.rb
@@ -253,7 +253,7 @@ describe Puppet::Parser do
end
it "should raise an error if the node already exists" do
- @loaded_code.stubs(:node).with(@nodename).returns(@node)
+ @loaded_code.stubs(:node_exists?).with(@nodename).returns(@node)
lambda { @parser.newnode(@nodename) }.should raise_error
end