Sha256: 6574cda70c0cdb6ebae2fb21f51aeb34bee98aab0b9817cd37a2fbc0e0e219bf
Contents?: true
Size: 1.21 KB
Versions: 4
Compression:
Stored size: 1.21 KB
Contents
# frozen_string_literal: true require_relative '../../export_kick_off_performer' require_relative '../bulk_data_outputFormat_param_test' require_relative '../bulk_data_since_param_test' module BulkDataTestKit module BulkDataV200 class BulkDataPatientExportParameters < Inferno::TestGroup id :bulk_data_patient_export_parameters_group title 'Patient Export Parameters Tests' description %( Verify that the Bulk Data server supports required query parameters for the export of all Patient resources. ) input :bearer_token, title: 'Bulk Data Authorization Bearer Token', description: 'The authorization bearer token for the Bulk FHIR server. If not required, leave blank.', optional: true test from: :output_format_in_export_response, id: :output_format_in_patient_export_response, config: { options: { resource_type: 'Patient', bulk_export_url: 'Patient/$export' } } test from: :since_in_export_response, id: :since_in_patient_export_response, config: { options: { resource_type: 'Patient', bulk_export_url: 'Patient/$export' } } end end end
Version data entries
4 entries across 4 versions & 1 rubygems