summaryrefslogtreecommitdiffstats
path: root/spec/unit/node/node.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/node/node.rb')
-rwxr-xr-xspec/unit/node/node.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/unit/node/node.rb b/spec/unit/node/node.rb
index 9342dc5ce..2f63c253d 100755
--- a/spec/unit/node/node.rb
+++ b/spec/unit/node/node.rb
@@ -11,6 +11,10 @@ describe Puppet::Node, " when initializing" do
@node.name.should == "testnode"
end
+ it "should not allow nil node names" do
+ proc { Puppet::Node.new(nil) }.should raise_error(ArgumentError)
+ end
+
it "should default to an empty parameter hash" do
@node.parameters.should == {}
end