Sha256: f6fb2180e2c5bb75a55e2dfa01a6a2fc1650f2dd5b9fbe6df1694e86d11f87e2
Contents?: true
Size: 1.16 KB
Versions: 11
Compression:
Stored size: 1.16 KB
Contents
require_relative '../../../carin_search_test' require_relative '../../../generator/group_metadata' module CarinForBlueButtonTestKit module CARIN4BBV200DEVNONFINANCIAL class EobOutpatientInstitutionalIdSearchTest < Inferno::Test include CarinForBlueButtonTestKit::CarinSearchTest title 'Server returns valid results for ExplanationOfBenefit search by _id' description %(A server SHALL support searching by _id 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_v200devnonfinancial_eob_outpatient_institutional__id_search_test def self.properties @properties ||= SearchTestProperties.new( resource_type: 'ExplanationOfBenefit', search_param_names: ['_id'] ) 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
11 entries across 11 versions & 1 rubygems