39
40
41
42
43
44
45
46
47
48
49
50
|
# File 'lib/davinci_crd_test_kit/client/v2.2.1/cross_hook/client_fhirpath_collection_as_comma_delimited_string_test.rb', line 39
def completeness_tests_demonstrate_collection_token_substitution?(prefetch_completeness_tests)
results_repo = Inferno::Repositories::Results.new
results = results_repo.current_results_for_test_session_and_runnables(test_session_id,
prefetch_completeness_tests)
results.any? do |result|
result.outputs.any? do |output|
output['name'] == 'demonstrates_fhirpath_collection_as_comma_delimited_string' &&
output['value'] == 'true'
end
end
end
|