Sha256: 4141d24131df306b2da70d92f3012e6fb501960abf4446c21fa46a7ae81ffa75
Contents?: true
Size: 1.83 KB
Versions: 11
Compression:
Stored size: 1.83 KB
Contents
require_relative '../../../must_support_test' require_relative './read_test' require_relative '../../../generator/group_metadata' module CarinForBlueButtonTestKit module CARIN4BBV200DEVNONFINANCIAL class OrganizationMustSupportTest < Inferno::Test include CarinForBlueButtonTestKit::MustSupportTest include CarinForBlueButtonTestKit::CARIN4BBV200DEVNONFINANCIAL title 'All must support elements are provided in the Organization resources returned' description %( CARIN for Blue Button Responders SHALL be capable of populating all data elements as part of the query results as specified by the CARIN for Blue Button Capability Statement. This test will look through the Organization resources found previously for the following must support elements: * Organization.active * Organization.address * Organization.address.city * Organization.address.country * Organization.address.line * Organization.address.postalCode * Organization.address.state * Organization.identifier * Organization.identifier:NPI * Organization.identifier:naiccode * Organization.identifier:payerid * Organization.identifier:tax * Organization.meta * Organization.meta.lastUpdated * Organization.name * Organization.telecom ) id :c4bb_v200devnonfinancial_organization_must_support_test def resource_type 'Organization' end def self.metadata @metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, 'metadata.yml'), aliases: true)) end def scratch_resources scratch[:organization_resources] ||= {} end run do perform_must_support_test(all_scratch_resources) end end end end
Version data entries
11 entries across 11 versions & 1 rubygems