Sha256: 3a67f15ff7ea204e178b60e6a8751597782be09fe68ccc7e58abc9a22542c5f9
Contents?: true
Size: 1.38 KB
Versions: 9
Compression:
Stored size: 1.38 KB
Contents
require_relative '../../../search_test' require_relative '../../../generator/group_metadata' module IpaTestKit module IpaV100 class VitalsignsPatientCodeSearchTest < Inferno::Test include IpaTestKit::SearchTest title 'Server returns valid results for Observation search by patient + code' description %( A server SHALL support searching by patient + code on the Observation resource. This test will pass if resources are returned and match the search criteria. If none are returned, the test is skipped. # TODO: Fix this # [US Core Server CapabilityStatement](http://hl7.org/fhir/us/core//CapabilityStatement-us-core-server.html) ) id :ipa_v100_vitalsigns_patient_code_search_test input :patient_ids, title: 'Patient IDs', description: 'Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements' def self.properties @properties ||= SearchTestProperties.new( resource_type: 'Observation', search_param_names: ['patient', 'code'], token_search_params: ['code'] ) end def self.metadata @metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, 'metadata.yml'), aliases: true)) end def scratch_resources scratch[:vitalsigns_resources] ||= {} end run do run_search_test end end end end
Version data entries
9 entries across 9 versions & 1 rubygems