From 57b6e0ccb30febdfa73becdd0c40957b93b816ee Mon Sep 17 00:00:00 2001 From: Jaehoon Lee Date: Tue, 19 Nov 2024 08:22:36 -0500 Subject: [PATCH] Remove old comment --- lib/inferno/dsl/fhir_evaluation.rb | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/lib/inferno/dsl/fhir_evaluation.rb b/lib/inferno/dsl/fhir_evaluation.rb index ebbc57e68..c8ea830e0 100644 --- a/lib/inferno/dsl/fhir_evaluation.rb +++ b/lib/inferno/dsl/fhir_evaluation.rb @@ -2,25 +2,6 @@ module Inferno module DSL - # This module contains the methods needed to configure a validator to - # perform validation of FHIR resources. The actual validation is performed - # by an external FHIR validation service. Tests will typically rely on - # `assert_valid_resource` for validation rather than directly calling - # methods on a validator. - # - # @example - # - # validator do - # url 'http://example.com/validator' - # exclude_message { |message| message.type == 'info' } - # perform_additional_validation do |resource, profile_url| - # if something_is_wrong - # { type: 'error', message: 'something is wrong' } - # else - # { type: 'info', message: 'everything is ok' } - # end - # end - # end module FHIREvaluation class Evaluator # @private