Sha256: 23bad744f8493e8b2aba046e94f50e6527f6c069006af65c34b3b6ac44b5bd53
Contents?: true
Size: 923 Bytes
Versions: 11
Compression:
Stored size: 923 Bytes
Contents
require_relative '../../../read_test' require 'json' module CarinForBlueButtonTestKit module CARIN4BBV200 class EobInpatientInstitutionalReadTest < Inferno::Test include CarinForBlueButtonTestKit::ReadTest title 'Server returns correct ExplanationOfBenefit resource from ExplanationOfBenefit read interaction' description 'A server SHALL support the ExplanationOfBenefit read interaction.' id :c4bb_v200_eob_inpatient_institutional_read_test def resource_type 'ExplanationOfBenefit' end def scratch_resources scratch[:explanationofbenefit_resources] ||= {} end def resource_ids return [] unless respond_to? :additional_eob_inpatient_institutional_ids additional_eob_inpatient_institutional_ids.split(',').map(&:strip) end run do perform_read_test(all_scratch_resources) end end end end
Version data entries
11 entries across 11 versions & 1 rubygems