class Array

Public Instance Methods

status() click to toggle source
# File lib/marso/helpers/statushelper.rb, line 160
def status
  _status = :none
  unless self.nil? || self.empty?
    _status = self.reduce { |x,y| Marso.item_with_stronger_status(x, y) }.status
  end

  return _status == :failed_no_component ? :failed : _status
end