Sha256: 78cfe57d01df0439ad4771680b8327e6ef2e1b055a572be7b4ea5f76f07a2803
Contents?: true
Size: 1.17 KB
Versions: 2
Compression:
Stored size: 1.17 KB
Contents
require_relative '../../must_support_test' module USCoreTestKit class DeviceMustSupportTest < Inferno::Test include USCoreTestKit::MustSupportTest title 'All must support elements are provided in the Device resources returned' description %( US Core Responders SHALL be capable of populating all data elements as part of the query results as specified by the US Core Server Capability Statement. This test will look through the Device resources found previously for the following must support elements: * Device.distinctIdentifier * Device.expirationDate * Device.lotNumber * Device.manufactureDate * Device.patient * Device.serialNumber * Device.type * Device.udiCarrier * Device.udiCarrier.deviceIdentifier ) id :us_core_311_device_must_support_test def resource_type 'Device' end def self.metadata @metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, 'metadata.yml'))) end def scratch_resources scratch[:device_resources] ||= {} end run do perform_must_support_test(all_scratch_resources) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
us_core_test_kit-0.1.1 | lib/us_core_test_kit/generated/device/device_must_support_test.rb |
us_core_test_kit-0.1.0 | lib/us_core_test_kit/generated/device/device_must_support_test.rb |