class Honeybadger::Backend::Test

def self.check_ins

Returns:
  • (Array) - List of check ins.
    Other tags:
      Api: - public
    def self.check_ins
      @check_ins ||= []
    end

    def self.notifications

    Returns:
    • (Hash) - Notifications hash.
    def self.notifications
      @notifications ||= Hash.new {|h,k| h[k] = [] }
    end

    def check_in(id)

    def check_in(id)
      check_ins << id
      super
    end

    def check_ins

    def check_ins
      self.class.check_ins
    end

    def notifications

    def notifications
      self.class.notifications
    end

    def notify(feature, payload)

    def notify(feature, payload)
      notifications[feature] << payload
      super
    end