Sha256: e5051ce3acee762c4b978543467c64ec0e40ee8bcb400aa4c2540ed94e451c86
Contents?: true
Size: 874 Bytes
Versions: 11
Compression:
Stored size: 874 Bytes
Contents
require_relative '../../../read_test' require 'json' module CarinForBlueButtonTestKit module CARIN4BBV200DEVNONFINANCIAL class OrganizationReadTest < Inferno::Test include CarinForBlueButtonTestKit::ReadTest title 'Server returns correct Organization resource from Organization read interaction' description 'A server SHALL support the Organization read interaction.' id :c4bb_v200devnonfinancial_organization_read_test def resource_type 'Organization' end def scratch_resources scratch[:organization_resources] ||= {} end def resource_ids return [] unless respond_to? :additional_organization_ids additional_organization_ids.split(',').map(&:strip) end run do perform_read_test(scratch.dig(:references, 'Organization')) end end end end
Version data entries
11 entries across 11 versions & 1 rubygems