Sha256: 75f34f4f0b9bf1b7cab7371bfc11587b2560b184b734b3ed5839b6d46425f965
Contents?: true
Size: 1.1 KB
Versions: 3
Compression:
Stored size: 1.1 KB
Contents
require_relative '../../../must_support_test' module USCoreTestKit module USCoreV501 class GoalMustSupportTest < Inferno::Test include USCoreTestKit::MustSupportTest title 'All must support elements are provided in the Goal 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 Goal resources found previously for the following must support elements: * Goal.description * Goal.lifecycleStatus * Goal.subject * Goal.target * Goal.target.dueDate ) id :us_core_v501_goal_must_support_test def resource_type 'Goal' end def self.metadata @metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, 'metadata.yml'))) end def scratch_resources scratch[:goal_resources] ||= {} end run do perform_must_support_test(all_scratch_resources) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems