Sha256: c4f9ae4549eacb1abecd8a7aab0d6d6c953f08a7b3dca52a822c4941bc9eff61
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 RelatedPersonLastupdatedSearchTest < Inferno::Test include CarinForBlueButtonTestKit::CarinSearchTest title 'Server returns valid results for RelatedPerson search by _lastUpdated' description %(A server SHOULD support searching by _lastUpdated on the RelatedPerson 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_related_person__lastUpdated_search_test optional def self.properties @properties ||= SearchTestProperties.new( resource_type: 'RelatedPerson', 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[:relatedperson_resources] ||= {} end run do run_search_test end end end end
Version data entries
10 entries across 10 versions & 1 rubygems