Sha256: 3113025c344fc81b0fd6413d4b6399b6c14c12d68706a7993e468fed2a504323

Contents?: true

Size: 1.49 KB

Versions: 4

Compression:

Stored size: 1.49 KB

Contents

require 'spec_helper'

describe NetSuite::Records::SalesOrderItem do
  let(:item) { NetSuite::Records::SalesOrderItem.new }

  it 'has all the right fields' do
    [
     :amount, :bin_numbers, :cost_estimate, :cost_estimate_type,
     :defer_rev_rec, :description, :expand_item_group,
     :gift_cert_from, :gift_cert_message, :gift_cert_number,
     :gift_cert_recipient_email, :gift_cert_recipient_name,
     :gross_amt, :is_taxable, :line, :order_line, :po_currency,
     :quantity, :quantity_back_ordered, :quantity_billed,
     :quantity_committed, :quantity_fulfilled,
     :rate, :rev_rec_end_date, :rev_rec_start_date,
     :rev_rec_term_in_months, :serial_numbers, :ship_group,
     :tax1_amt, :tax_rate1, :tax_rate2,
     :vsoe_allocation, :vsoe_amount, :vsoe_deferral,
     :vsoe_delivered, :vsoe_permit_discount, :vsoe_price,
    ].each do |field|
      expect(item).to have_field(field)
    end
  end

  it 'has all the right record refs' do
    [
      :department, :item, :job, :klass, :location, :price, :rev_rec_schedule, :tax_code, :units
    ].each do |record_ref|
      expect(item).to have_record_ref(record_ref)
    end
  end

  describe '#options' do
    it 'can be set from attributes'
    it 'can be set from a CustomFieldList object'
  end

  describe '#inventory_detail' do
    it 'can be set from attributes'
    it 'can be set from an InventoryDetail object'
  end

  describe '#custom_field_list' do
    it 'can be set from attributes'
    it 'can be set from a CustomFieldList object'
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
netsuite-0.9.3 spec/netsuite/records/sales_order_item_spec.rb
netsuite-0.9.2 spec/netsuite/records/sales_order_item_spec.rb
netsuite-0.9.1 spec/netsuite/records/sales_order_item_spec.rb
netsuite-0.9.0 spec/netsuite/records/sales_order_item_spec.rb