class Comment
  def self.validate(row)
    reasons = []

    comment = row[:comment].to_s
    if comment and comment.length > 180
      reasons << 'Comment maximum length is 180 characters'
    end

    reasons
  end
end
