Sha256: 5ef22b9f533d5edec2e750a6ce90bce31a134533393c30428896d7888930a688
Contents?: true
Size: 1.75 KB
Versions: 25
Compression:
Stored size: 1.75 KB
Contents
require_relative '../../../must_support_test' module USCoreTestKit module USCoreV501 class DocumentReferenceMustSupportTest < Inferno::Test include USCoreTestKit::MustSupportTest title 'All must support elements are provided in the DocumentReference resources returned' description %( US Core Responders SHALL be capable of populating all data elements as part of the query results as specified by the US Core Server Capability Statement. This test will look through the DocumentReference resources found previously for the following must support elements: * DocumentReference.author * DocumentReference.category * DocumentReference.category:us-core * DocumentReference.content * DocumentReference.content.attachment * DocumentReference.content.attachment.contentType * DocumentReference.content.attachment.data or DocumentReference.content.attachment.url * DocumentReference.content.format * DocumentReference.context * DocumentReference.context.encounter * DocumentReference.context.period * DocumentReference.date * DocumentReference.identifier * DocumentReference.status * DocumentReference.subject * DocumentReference.type ) id :us_core_v501_document_reference_must_support_test def resource_type 'DocumentReference' end def self.metadata @metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, 'metadata.yml'), aliases: true)) end def scratch_resources scratch[:document_reference_resources] ||= {} end run do perform_must_support_test(all_scratch_resources) end end end end
Version data entries
25 entries across 25 versions & 1 rubygems