Sha256: 0ea92178254ddfcab9e3003d243eef843b3b13ec4b42da39f8689b5c3ad63b09
Contents?: true
Size: 1.69 KB
Versions: 6
Compression:
Stored size: 1.69 KB
Contents
require_relative '../../../must_support_test' module USCoreTestKit module USCoreV400 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.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_v400_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'))) 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
6 entries across 6 versions & 1 rubygems