# File lib/god/conditions/memory_usage.rb, line 65
      def test
        process = System::Process.new(self.pid)
        @timeline.push(process.memory)

        history = "[" + @timeline.map { |x| "#{x > self.above ? '*' : ''}#{x}kb" }.join(", ") + "]"

        if @timeline.select { |x| x > self.above }.size >= self.times.first
          self.info = "memory out of bounds #{history}"
          return true
        else
          self.info = "memory within bounds #{history}"
          return false
        end
      end