Sha256: e57faa5c445b88fb67d2816fe7270dab3a906fac65eb3fa2b8e61e6818558ac6
Contents?: true
Size: 1.26 KB
Versions: 7
Compression:
Stored size: 1.26 KB
Contents
require_relative '../../../must_support_test' module IpaTestKit module IpaV100 class PractitionerRoleMustSupportTest < Inferno::Test include IpaTestKit::MustSupportTest title 'All must support elements are provided in the PractitionerRole 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 PractitionerRole resources found previously for the following must support elements: * PractitionerRole.practitioner 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_practitioner_role_must_support_test optional def resource_type 'PractitionerRole' end def self.metadata @metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, 'metadata.yml'), aliases: true)) end def scratch_resources scratch[:practitioner_role_resources] ||= {} end run do perform_must_support_test(all_scratch_resources) end end end end
Version data entries
7 entries across 7 versions & 1 rubygems