Sha256: 359ba0e299b3c1a485bac6a5cee5d8032379c4fa21fc95469fba418c923c3829
Contents?: true
Size: 1.14 KB
Versions: 10
Compression:
Stored size: 1.14 KB
Contents
require_relative '../../../carin_search_test' require_relative '../../../generator/group_metadata' module CarinForBlueButtonTestKit module CARIN4BBV200 class PractitionerLastupdatedSearchTest < Inferno::Test include CarinForBlueButtonTestKit::CarinSearchTest title 'Server returns valid results for Practitioner search by _lastUpdated' description %(A server SHOULD 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. ) id :c4bb_v200_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
10 entries across 10 versions & 1 rubygems