Sha256: b93a553d94e42cfc2dcd9b2de67601e26d6e504ce5620ae7e6cc746398e8cbdc
Contents?: true
Size: 1.38 KB
Versions: 15
Compression:
Stored size: 1.38 KB
Contents
require_relative '../../../reference_resolution_test' module USCoreTestKit module USCoreV400 class MedicationRequestReferenceResolutionTest < Inferno::Test include USCoreTestKit::ReferenceResolutionTest title 'MustSupport references within MedicationRequest resources are valid' description %( This test will attempt to read external references provided within elements marked as 'MustSupport', if any are available. It verifies that at least one external reference for each MustSupport Reference element can be accessed by the test client, and conforms to corresponding US Core profile. Elements which may provide external references include: * MedicationRequest.encounter * MedicationRequest.medication[x] * MedicationRequest.reportedReference * MedicationRequest.requester * MedicationRequest.subject ) id :us_core_v400_medication_request_reference_resolution_test def resource_type 'MedicationRequest' end def self.metadata @metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, 'metadata.yml'), aliases: true)) end def scratch_resources scratch[:medication_request_resources] ||= {} end run do perform_reference_resolution_test(scratch_resources[:all]) end end end end
Version data entries
15 entries across 15 versions & 1 rubygems