Sha256: 6f8127f8b9a4e55eaa889409b0e6fd332422384f6016f588c6a01b79cab0dfa1
Contents?: true
Size: 1.27 KB
Versions: 9
Compression:
Stored size: 1.27 KB
Contents
require_relative '../../../reference_resolution_test' require_relative '../resource_list' module IpaTestKit module IpaV100 class AllergyIntoleranceReferenceResolutionTest < Inferno::Test include IpaTestKit::ReferenceResolutionTest include ResourceList 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 IPA profile. Elements which may provide external references include: * AllergyIntolerance.patient ) id :ipa_v100_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
9 entries across 9 versions & 1 rubygems