Sha256: 47bbcfd3be58e7139994ed10758166557dbcc6b8dfc2a34b33754db9344f2e73

Contents?: true

Size: 1.27 KB

Versions: 47

Compression:

Stored size: 1.27 KB

Contents

require 'spec_helper'

describe 'NetSuite::Records::*#refresh' do
  it 'should refresh a netsuite object in place' do
    shutter_fly_record = NetSuite::Records::Customer.new({ :internal_id => 123, :external_id => 'extid', :entity_id => 'Shutter Fly', :company_name => 'Shutter Fly, Inc.' })
    shutter_fly_record.errors = ['error 1', 'error 2']

    current_record = shutter_fly_record

    allow(NetSuite::Records::Customer).to receive(:get).and_return(shutter_fly_record)

    customer = NetSuite::Records::Customer.get({:internal_id => 123})

    expect(customer.errors.size).to eq(2)
    expect(customer.entity_id).to eq('Shutter Fly')
    expect(customer.company_name).to eq('Shutter Fly, Inc.')
    expect(customer.external_id).to eq('extid')
    expect(customer.internal_id).to eq(123)

    allow(NetSuite::Records::Customer).to receive(:get).and_return(NetSuite::Records::Customer.new({ :external_id => 'newextid', :entity_id => 'Totally New', :account_number => '1234' }))
    customer.refresh

    expect(customer.errors).to be_nil
    expect(customer.entity_id).to_not eq('Shutter Fly')
    expect(customer.account_number).to eq('1234')
    expect(customer.company_name).to be_nil
    expect(customer.external_id).to eq('newextid')
    expect(customer.internal_id).to eq(123)
  end
end

Version data entries

47 entries across 47 versions & 1 rubygems

Version Path
netsuite-0.9.3 spec/netsuite/actions/refresh_spec.rb
netsuite-0.9.2 spec/netsuite/actions/refresh_spec.rb
netsuite-0.9.1 spec/netsuite/actions/refresh_spec.rb
netsuite-0.9.0 spec/netsuite/actions/refresh_spec.rb
netsuite-0.8.12 spec/netsuite/actions/refresh_spec.rb
netsuite-0.8.11 spec/netsuite/actions/refresh_spec.rb
netsuite-0.8.10 spec/netsuite/actions/refresh_spec.rb
netsuite-0.8.9 spec/netsuite/actions/refresh_spec.rb
netsuite-0.8.8 spec/netsuite/actions/refresh_spec.rb
netsuite-0.8.7 spec/netsuite/actions/refresh_spec.rb
netsuite-0.8.6 spec/netsuite/actions/refresh_spec.rb
netsuite-0.8.5 spec/netsuite/actions/refresh_spec.rb
netsuite-0.8.4 spec/netsuite/actions/refresh_spec.rb
netsuite-0.8.3 spec/netsuite/actions/refresh_spec.rb
netsuite-0.8.2 spec/netsuite/actions/refresh_spec.rb
netsuite-0.8.1 spec/netsuite/actions/refresh_spec.rb
netsuite-0.8.0 spec/netsuite/actions/refresh_spec.rb
netsuite-0.7.9 spec/netsuite/actions/refresh_spec.rb
netsuite-0.7.8 spec/netsuite/actions/refresh_spec.rb
netsuite-0.7.7 spec/netsuite/actions/refresh_spec.rb