Sha256: fa6eea716bc612821cddc3b7f5a09f610e05331168a1e511a9eda37d6a815d7f
Contents?: true
Size: 1.39 KB
Versions: 9
Compression:
Stored size: 1.39 KB
Contents
require_relative '../../../must_support_test' module IpaTestKit module IpaV100 class ProblemListItemMustSupportTest < Inferno::Test include IpaTestKit::MustSupportTest title 'All must support elements are provided in the Condition resources returned' description %( Responders conforming to a profile in IPA SHALL return a Must Support element if that element is available. This test will look through the Condition resources found previously for the following must support elements: * Condition.category * Condition.category:problem-list-item * Condition.clinicalStatus * Condition.code * Condition.subject * Condition.verificationStatus Note: Responders who cannot store or return a data element tagged as Supported in IPA profiles can still claim conformance to the IPA profiles per the IPA conformance resources. ) id :ipa_v100_problem_list_item_must_support_test optional def resource_type 'Condition' end def self.metadata @metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, 'metadata.yml'), aliases: true)) end def scratch_resources scratch[:problem_list_item_resources] ||= {} end run do perform_must_support_test(all_scratch_resources) end end end end
Version data entries
9 entries across 9 versions & 1 rubygems