Sha256: 060dba213f233092fcb6447aad697b372856622f5454a7e8f28342c6392c39da
Contents?: true
Size: 844 Bytes
Versions: 11
Compression:
Stored size: 844 Bytes
Contents
require_relative '../../../read_test' require 'json' module CarinForBlueButtonTestKit module CARIN4BBV200 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_v200_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