Sha256: 64b8f974da842342af2e9b062e8a659174209c00455bf7d1d79b3ee7b0b1a75e
Contents?: true
Size: 1.24 KB
Versions: 4
Compression:
Stored size: 1.24 KB
Contents
require_relative '../../../search_test' require_relative '../../../generator/group_metadata' module DaVinciPlanNetTestKit module DaVinciPlanNetV110 class PractitionerLastupdatedSearchTest < Inferno::Test include DaVinciPlanNetTestKit::SearchTest title 'Server returns valid results for Practitioner search by _lastUpdated' description %( A server SHALL support searching by _lastUpdated on the Practitioner resource. This test will pass if resources are returned and match the search criteria. If none are returned, the test is skipped. [Plan Net Server CapabilityStatement](http://hl7.org/fhir/us/davinci-pdex-plan-net/STU1.1/CapabilityStatement/plan-net) ) id :davinci_plan_net_v110_practitioner__lastUpdated_search_test optional def self.properties @properties ||= SearchTestProperties.new( resource_type: 'Practitioner', search_param_names: ['_lastUpdated'] ) end def self.metadata @metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, 'metadata.yml'), aliases: true)) end def scratch_resources scratch[:practitioner_resources] ||= {} end run do run_search_test end end end end
Version data entries
4 entries across 4 versions & 1 rubygems