Sha256: 035acd4fabd1a75361e91f82b90ab5f630138346f55e11e08139e79cdf690514
Contents?: true
Size: 1.28 KB
Versions: 4
Compression:
Stored size: 1.28 KB
Contents
require_relative '../../../search_test' require_relative '../../../generator/group_metadata' module DaVinciPlanNetTestKit module DaVinciPlanNetV110 class PractitionerRoleSpecialtySearchTest < Inferno::Test include DaVinciPlanNetTestKit::SearchTest title 'Server returns valid results for PractitionerRole search by specialty' description %( A server SHALL support searching by specialty on the PractitionerRole resource. This test will pass if resources are returned and match the search criteria. If none are returned, the test is skipped. [Plan Net Server CapabilityStatement](http://hl7.org/fhir/us/davinci-pdex-plan-net/STU1.1/CapabilityStatement/plan-net) ) id :davinci_plan_net_v110_practitioner_role_specialty_search_test def self.properties @properties ||= SearchTestProperties.new( resource_type: 'PractitionerRole', search_param_names: ['specialty'], token_search_params: ['specialty'] ) 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 run_search_test end end end end
Version data entries
4 entries across 4 versions & 1 rubygems