diff options
author | Jesse Wolfe <jes5199@gmail.com> | 2010-03-17 12:03:09 -0700 |
---|---|---|
committer | test branch <puppet-dev@googlegroups.com> | 2010-02-17 06:50:53 -0800 |
commit | f838389da0530201849958444dbbe60977935ad0 (patch) | |
tree | 510d357cac863521e6372327d50ec184135e5e87 /lib/puppet | |
parent | 9acd0b2b6d83881dc529c117637aff63a6c44f8d (diff) | |
download | puppet-f838389da0530201849958444dbbe60977935ad0.tar.gz puppet-f838389da0530201849958444dbbe60977935ad0.tar.xz puppet-f838389da0530201849958444dbbe60977935ad0.zip |
Fix a failing test in #3115
Signed-off-by: Jesse Wolfe <jes5199@gmail.com>
Diffstat (limited to 'lib/puppet')
-rw-r--r-- | lib/puppet/status.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/puppet/status.rb b/lib/puppet/status.rb index f587a5a2a..aaec5d3ba 100644 --- a/lib/puppet/status.rb +++ b/lib/puppet/status.rb @@ -17,4 +17,12 @@ class Puppet::Status def self.from_pson( pson ) self.new( pson ) end + + def name + "status" + end + + def name=(name) + # NOOP + end end |