Sha256: b4efe8535f7ee38cea5efbcdee97403c55d949afbb9690dbaf928fe0e36e02b5
Contents?: true
Size: 1.06 KB
Versions: 4
Compression:
Stored size: 1.06 KB
Contents
require 'json' require_relative './version' module UDSPlusTestKit class ValidateServiceRequestTest < Inferno::Test id :uds_plus_validate_service_request_test title 'Validate UDS+ Service Request Data' description %( Test takes the Service Request resources identified by the import manifest, and validates whether they conform to their UDS+ Structure Definitions. ) def data_scratch scratch[:data_resources] ||= {} end def data_to_test data_scratch['ServiceRequest'] ||= [] end run do omit_if data_to_test.empty?, "No data of this type was identified." profile_definition = 'http://fhir.org/guides/hrsa/uds-plus/StructureDefinition/uds-plus-servicerequest' profile_with_version = "#{profile_definition}|#{UDS_PLUS_VERSION}" data_to_test.each do |resource| assert_valid_resource(resource: resource, profile_url: profile_with_version) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems