Sha256: b8ea6c70438fc5c87fb6a6a901aed83085096e255e8849399821a3ed88ba56f9

Contents?: true

Size: 1.27 KB

Versions: 7

Compression:

Stored size: 1.27 KB

Contents

require 'spec_helper'

describe 'Fetching A19 from Medo' do
  describe 'a patient' do
    before { load_fixture 'medo_patient', 'md-cdae5d100d8e0131d2623c075478eb56' }
    subject { Roqua::Healthy::A19.fetch("md-cdae5d100d8e0131d2623c075478eb56") }

    it { expect(subject[:status]).to       eq('SUCCESS') }
    it { expect(subject[:error]).to        be_nil }
    it { expect(subject[:source]).to       eq('RGOC') }
    it { expect(subject[:identities]).to   eq([{ident: 'md-cdae5d100d8e0131d2623c075478eb56', authority: 'epd'}]) }
    it { expect(subject[:firstname]).to    eq('Jan') }
    it { expect(subject[:initials]).to     eq('J.') }
    it { expect(subject[:lastname]).to     eq('Fictief') }
    it { expect(subject[:display_name]).to be_nil }
    it { expect(subject[:email]).to        eq('j.fictief@roqua.nl') }
    it { expect(subject[:address_type]).to eq('H') }
    it { expect(subject[:street]).to       eq('Thuisstraat 42') }
    it { expect(subject[:city]).to         eq('GRUNN') }
    it { expect(subject[:zipcode]).to      eq('1234QQ') }
    it { expect(subject[:country]).to      eq('Nederland') }
    it { expect(subject[:birthdate]).to    eq('19800525') }
    it { expect(subject[:gender]).to       eq('M') }
    it { expect(subject[:phone_cell]).to   eq('0698765432') }
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
roqua-healthy-1.1.3 spec/integration/medo_spec.rb
roqua-healthy-1.1.2 spec/integration/medo_spec.rb
roqua-healthy-1.1.1 spec/integration/medo_spec.rb
roqua-healthy-1.1.0 spec/integration/medo_spec.rb
roqua-healthy-1.0.2 spec/integration/medo_spec.rb
roqua-healthy-1.0.1 spec/integration/medo_spec.rb
roqua-healthy-1.0.0 spec/integration/medo_spec.rb