Sha256: d811c17d58d4fe1ed5b5103d654d97c6364d3702664c27b1a6377e9f8278978d
Contents?: true
Size: 1.27 KB
Versions: 11
Compression:
Stored size: 1.27 KB
Contents
require_relative '../../../carin_search_test' require_relative '../../../generator/group_metadata' module CarinForBlueButtonTestKit module CARIN4BBV200DEVNONFINANCIAL class EobInpatientInstitutionalNonFinancialBillablePeriodStartSearchTest < Inferno::Test include CarinForBlueButtonTestKit::CarinSearchTest title 'Server returns valid results for ExplanationOfBenefit search by billable-period-start' description %(A server SHALL support searching by billable-period-start on the ExplanationOfBenefit 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_eob_inpatient_institutional_non_financial_billable_period_start_search_test def self.properties @properties ||= SearchTestProperties.new( resource_type: 'ExplanationOfBenefit', search_param_names: ['billable-period-start'] ) end def self.metadata @metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, 'metadata.yml'), aliases: true)) end def scratch_resources scratch[:explanationofbenefit_resources] ||= {} end run do run_search_test end end end end
Version data entries
11 entries across 11 versions & 1 rubygems