Sha256: acaae801b093af6b7740ef21be3b306de09e409bf658c536e1c491c848e891e7
Contents?: true
Size: 1.21 KB
Versions: 10
Compression:
Stored size: 1.21 KB
Contents
require_relative '../../../carin_search_test' require_relative '../../../generator/group_metadata' module CarinForBlueButtonTestKit module CARIN4BBV200 class EobProfessionalNonClinicianIdentifierSearchTest < Inferno::Test include CarinForBlueButtonTestKit::CarinSearchTest title 'Server returns valid results for ExplanationOfBenefit search by identifier' description %(A server SHALL support searching by identifier on the ExplanationOfBenefit resource. This test will pass if resources are returned and match the search criteria. If none are returned, the test is skipped. ) id :c4bb_v200_eob_professional_non_clinician_identifier_search_test def self.properties @properties ||= SearchTestProperties.new( resource_type: 'ExplanationOfBenefit', search_param_names: ['identifier'], token_search_params: ['identifier'] ) end def self.metadata @metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, 'metadata.yml'), aliases: true)) end def scratch_resources scratch[:explanationofbenefit_resources] ||= {} end run do run_search_test end end end end
Version data entries
10 entries across 10 versions & 1 rubygems