Sha256: b6386f2b4ec606e930b800869afa5fad687dab4e6f5f213a5e859e00e11fbf64
Contents?: true
Size: 1.33 KB
Versions: 11
Compression:
Stored size: 1.33 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, :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
11 entries across 11 versions & 1 rubygems