# File lib/god/conditions/cpu_usage.rb, line 63
      def test
        process = System::Process.new(self.pid)
        @timeline.push(process.percent_cpu)
        self.info = []

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

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