Sha256: 938c3b6945fff38d4daf21194ba793cf219b7fc5e5fa19cfc45c09403d2d3cd5

Contents?: true

Size: 423 Bytes

Versions: 3

Compression:

Stored size: 423 Bytes

Contents

require 'spec_helper'

describe NetSuite::Records::ShipAddress do
  let(:ship_address) { NetSuite::Records::ShipAddress.new }

  it 'has all the right fields' do
    [
      :ship_attention, :ship_addressee, :ship_phone, :ship_addr1, :ship_addr2, :ship_addr3,
      :ship_city, :ship_state, :ship_zip, :ship_country, :ship_is_residential
    ].each do |field|
      ship_address.should have_field(field)
    end
  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
netsuite-0.0.10 spec/netsuite/records/ship_address_spec.rb
netsuite-0.0.9 spec/netsuite/records/ship_address_spec.rb
netsuite-0.0.8 spec/netsuite/records/ship_address_spec.rb