Sha256: 94f7930712dd14e63a166733fe01db313696a2dfa78ff3bce062fab446dada3d

Contents?: true

Size: 1.33 KB

Versions: 19

Compression:

Stored size: 1.33 KB

Contents

require 'spec_helper'

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

  it 'has all the right fields' do
    [
      :amount, :bin_numbers, :cost_estimate, :cost_estimate_type, :defer_rev_rec, :description, :gift_cert_from,
      :gift_cert_message, :gift_cert_number, :gift_cert_recipient_email, :gift_cert_recipient_name, :gross_amt, :is_taxable,
      :line, :order_line, :quantity, :rate, :rev_rec_end_date, :rev_rec_start_date, :rev_rec_term_in_months, :serial_numbers,
      :tax1_amt, :tax_rate1, :tax_rate2, :vsoe_allocation, :vsoe_amount, :vsoe_deferral, :vsoe_delivered, :vsoe_permit_discount,
      :vsoe_price
    ].each do |field|
      item.should 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|
      item.should 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

19 entries across 19 versions & 1 rubygems

Version Path
netsuite-0.3.0 spec/netsuite/records/credit_memo_item_spec.rb
netsuite-0.2.6 spec/netsuite/records/credit_memo_item_spec.rb
netsuite-0.2.5 spec/netsuite/records/credit_memo_item_spec.rb
netsuite-0.2.4 spec/netsuite/records/credit_memo_item_spec.rb
netsuite-0.2.3 spec/netsuite/records/credit_memo_item_spec.rb
netsuite-0.2.2 spec/netsuite/records/credit_memo_item_spec.rb
netsuite-0.2.1 spec/netsuite/records/credit_memo_item_spec.rb
netsuite-0.2.0 spec/netsuite/records/credit_memo_item_spec.rb
netsuite-0.1.0 spec/netsuite/records/credit_memo_item_spec.rb
netsuite-0.0.50 spec/netsuite/records/credit_memo_item_spec.rb
netsuite-0.0.49 spec/netsuite/records/credit_memo_item_spec.rb
netsuite-0.0.48 spec/netsuite/records/credit_memo_item_spec.rb
netsuite-0.0.47 spec/netsuite/records/credit_memo_item_spec.rb
netsuite-0.0.45 spec/netsuite/records/credit_memo_item_spec.rb
netsuite-0.0.44 spec/netsuite/records/credit_memo_item_spec.rb
netsuite-0.0.43 spec/netsuite/records/credit_memo_item_spec.rb
netsuite-0.0.42 spec/netsuite/records/credit_memo_item_spec.rb
netsuite-0.0.41 spec/netsuite/records/credit_memo_item_spec.rb
netsuite-0.0.40 spec/netsuite/records/credit_memo_item_spec.rb