Sha256: 9855326584b4a29f644d0344470e3f867ebfb50e2bea349b4dfdde40239a76e5
Contents?: true
Size: 779 Bytes
Versions: 50
Compression:
Stored size: 779 Bytes
Contents
# frozen_string_literal: true # This presenter class provides all data needed by the view that show the list of authorities. module QaServer class AuthorityListPresenter # rubocop:disable Style/AsciiComments # @return [Array<Hash>] A list of status data for each scenario tested. # @example # { status: :PASS, # status_label: '√', # authority_name: 'LOCNAMES_LD4L_CACHE', # subauthority_name: 'person', # service: 'ld4l_cache', # action: 'search', # url: '/qa/search/linked_data/locnames_ld4l_cache/person?q=mark twain&maxRecords=4', # err_message: '' } attr_reader :urls_data # rubocop:enable Style/AsciiComments def initialize(urls_data:) @urls_data = urls_data end end end
Version data entries
50 entries across 50 versions & 1 rubygems