Sha256: e1edefa3d07a220b3dcbb07bc4d28be68c816831c0f66a9beb4bf10239ca1805
Contents?: true
Size: 1.71 KB
Versions: 23
Compression:
Stored size: 1.71 KB
Contents
require_relative '../../../must_support_test' module USCoreTestKit module USCoreV311 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_v311_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
23 entries across 23 versions & 1 rubygems