Sha256: 895c50d2c38fafa00b23948006890943f5bb98b8d8009e2854593562cac67c8a
Contents?: true
Size: 1.7 KB
Versions: 5
Compression:
Stored size: 1.7 KB
Contents
require 'spec_helper' describe NetSuite::Records::RecordRef do let(:record_ref) { NetSuite::Records::RecordRef.new } describe 'internal_id' do context 'when passing in as plain attribute to initialize' do it 'correctly sets the internal_id' do record_ref = NetSuite::Records::RecordRef.new(:internal_id => '1') record_ref.internal_id.should eql('1') end end context 'when passing in as swirly attributes to initialize' do it 'correctly sets the internal_id' do record_ref = NetSuite::Records::RecordRef.new(:@internal_id => '2') record_ref.internal_id.should eql('2') end end context 'when not passed in as an attribute to initialize' do it 'does not set an internal_id' do record_ref = NetSuite::Records::RecordRef.new record_ref.internal_id.should be_nil end end it 'has no public internal_id setter' do record_ref.should_not respond_to(:internal_id=) end end describe 'attributes' do let(:record_ref) do NetSuite::Records::RecordRef.new( :name => 'This is a record_ref', :banana => 'for monkeys' ) end context 'readers' do it 'can take on arbitrary attributes into itself on initialization' do record_ref.name.should eql('This is a record_ref') record_ref.banana.should eql('for monkeys') end end end describe 'untouchables' do let(:record_ref) do NetSuite::Records::RecordRef.new( :"@xmlns:platform_core" => 'something' ) end it 'ignores untouchable attributes' do record_ref.instance_variable_get('@attributes').keys.should_not include(:"@xmlns:platform_core") end end end
Version data entries
5 entries across 5 versions & 1 rubygems