Sha256: 1a4b2c592b7fb2686418b863cbc466ffae4435df7e96d8a660acf95d000f2ec1
Contents?: true
Size: 1.22 KB
Versions: 17
Compression:
Stored size: 1.22 KB
Contents
require_relative '../../../reference_resolution_test' module USCoreTestKit module USCoreV501 class AllergyIntoleranceReferenceResolutionTest < Inferno::Test include USCoreTestKit::ReferenceResolutionTest title 'MustSupport references within AllergyIntolerance 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: * AllergyIntolerance.patient ) id :us_core_v501_allergy_intolerance_reference_resolution_test def resource_type 'AllergyIntolerance' end def self.metadata @metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, 'metadata.yml'), aliases: true)) end def scratch_resources scratch[:allergy_intolerance_resources] ||= {} end run do perform_reference_resolution_test(scratch_resources[:all]) end end end end
Version data entries
17 entries across 17 versions & 1 rubygems