Sha256: 3e4ef18ae51af780d8e1bc9bdb6991d773160fc29c316030fcd2c608585e8ad1
Contents?: true
Size: 1.19 KB
Versions: 6
Compression:
Stored size: 1.19 KB
Contents
require_relative '../../../search_test' require_relative '../../../generator/group_metadata' module DaVinciPlanNetTestKit module DaVinciPlanNetV110 class InsurancePlanNameSearchTest < Inferno::Test include DaVinciPlanNetTestKit::SearchTest title 'Server returns valid results for InsurancePlan search by name' description %( A server SHALL support searching by name on the InsurancePlan 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_insurance_plan_name_search_test def self.properties @properties ||= SearchTestProperties.new( resource_type: 'InsurancePlan', search_param_names: ['name'] ) end def self.metadata @metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, 'metadata.yml'), aliases: true)) end def scratch_resources scratch[:insurance_plan_resources] ||= {} end run do run_search_test end end end end
Version data entries
6 entries across 6 versions & 1 rubygems