Sha256: fcc43d0749f8f485114dc50f3a6c10b3598e1db42722692a297e28361044c497

Contents?: true

Size: 302 Bytes

Versions: 7

Compression:

Stored size: 302 Bytes

Contents

class Chef::Handler
  class RunStatus
    def failed?
      false
    end

    def formatted_exception
      "formatted exception"
    end
  end

  class Node
    def name
      "node"
    end
  end

  def run_status
    @run_status ||= RunStatus.new
  end

  def node
    @node ||= Node.new
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
chef-handler-status_notifier-0.5.2 spec/chef/handler.rb
chef-handler-status_notifier-0.5.1 spec/chef/handler.rb
chef-handler-status_notifier-0.5.0 spec/chef/handler.rb
chef-handler-status_notifier-0.4.4 spec/chef/handler.rb
chef-handler-status_notifier-0.4.3 spec/chef/handler.rb
chef-handler-status_notifier-0.4.2 spec/chef/handler.rb
chef-handler-status_notifier-0.4.0 spec/chef/handler.rb