Sha256: 1cb83c36fb9abdfa87bee6f7f87db60f021726c242b24e3fb7e5a03c498ec071
Contents?: true
Size: 416 Bytes
Versions: 57
Compression:
Stored size: 416 Bytes
Contents
require 'spec_helper' describe NetSuite::Records::CashSaleItem do let(:item) { NetSuite::Records::CashSaleItem.new } it 'has all the right fields' do [ :amount ].each do |field| expect(item).to have_field(field) end end it 'has all the right record refs' do [ :item, :klass ].each do |record_ref| expect(item).to have_record_ref(record_ref) end end end
Version data entries
57 entries across 57 versions & 1 rubygems