Sha256: 15e8e3ff004128dd0b85ce19adabaede11592a760b1af5f42f398588cbecf023
Contents?: true
Size: 1.17 KB
Versions: 11
Compression:
Stored size: 1.17 KB
Contents
require_relative '../../../carin_search_test' require_relative '../../../generator/group_metadata' module CarinForBlueButtonTestKit module CARIN4BBV200DEVNONFINANCIAL 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_v200devnonfinancial_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
11 entries across 11 versions & 1 rubygems