Sha256: 8effe6bddbe4bfe206a77924b967714be060a71eb8c1329d541dcac9bb24daba
Contents?: true
Size: 632 Bytes
Versions: 1
Compression:
Stored size: 632 Bytes
Contents
require_relative '../test_helper' class ArgonautSprint7Test < Test::Unit::TestCase def setup @fixtures = File.absolute_path(File.join(File.absolute_path(__FILE__),'..','..','fixtures')) @bp_observation = FHIR::Bundle.from_xml File.read(File.join(@fixtures, 'vital_signs_bundle.xml')) @test = Crucible::Tests::ArgonautSprint7Test.new nil @test.instance_variable_set(:@warnings, []) end def test_validate_observation reply = FHIR::ClientReply.new nil, nil reply.resource = @bp_observation reply.response = Struct.new(:code).new(200) @test.send(:validate_observation_reply, reply) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
plan_executor-1.0.2 | test/unit/argonaut_sprint7_test.rb |