Sha256: ca8e692f958fb90cfa9d1ec0fc0b6cca750cdd19b89abd6f868369a8e6e0bdaa
Contents?: true
Size: 1.3 KB
Versions: 6
Compression:
Stored size: 1.3 KB
Contents
require_relative '../../../reference_resolution_test' require_relative '../resource_list' module USCoreTestKit module USCoreV311 class ProvenanceReferenceResolutionTest < Inferno::Test include USCoreTestKit::ReferenceResolutionTest include ResourceList title 'MustSupport references within Provenance 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: * Provenance.agent.onBehalfOf * Provenance.agent.who * Provenance.target ) id :us_core_v311_provenance_reference_resolution_test def resource_type 'Provenance' end def self.metadata @metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, 'metadata.yml'), aliases: true)) end def scratch_resources scratch[:provenance_resources] ||= {} end run do perform_reference_resolution_test(scratch_resources[:all]) end end end end
Version data entries
6 entries across 6 versions & 1 rubygems