Sha256: 242b1f1f5e573f3d56908b0f7baa4984414b4e8500e92e25c2a0916b3d865249
Contents?: true
Size: 927 Bytes
Versions: 10
Compression:
Stored size: 927 Bytes
Contents
require_relative '../../../read_test' require 'json' module CarinForBlueButtonTestKit module CARIN4BBV200 class EobOutpatientInstitutionalReadTest < 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_outpatient_institutional_read_test def resource_type 'ExplanationOfBenefit' end def scratch_resources scratch[:explanationofbenefit_resources] ||= {} end def resource_ids return [] unless respond_to? :additional_eob_outpatient_institutional_ids additional_eob_outpatient_institutional_ids.split(',').map(&:strip) end run do perform_read_test(all_scratch_resources) end end end end
Version data entries
10 entries across 10 versions & 1 rubygems