require 'spec_helper' # Unit tests for Bandwidth::Bxml::PhoneNumber describe 'Bandwidth::Bxml::PhoneNumber' do let(:initial_attributes) { { transfer_answer_url: 'https://initial.com', transfer_answer_method: 'POST', transfer_answer_fallback_url: 'https://initial.com', transfer_answer_fallback_method: 'POST', transfer_disconnect_url: 'https://initial.com', transfer_disconnect_method: 'POST', username: 'initial_username', password: 'initial_password', fallback_username: 'initial_fallback_username', fallback_password: 'initial_fallback_password', tag: 'initial_tag' } } let(:new_attributes) { { transfer_answer_url: 'https://new.com', transfer_answer_method: 'GET', transfer_answer_fallback_url: 'https://new.com', transfer_answer_fallback_method: 'GET', transfer_disconnect_url: 'https://new.com', transfer_disconnect_method: 'GET', username: 'new_username', password: 'new_password', fallback_username: 'new_fallback_username', fallback_password: 'new_fallback_password', tag: 'new_tag' } } let(:instance) { Bandwidth::Bxml::PhoneNumber.new('+19195551234', initial_attributes) } describe 'test an instance of PhoneNumber' do it 'validates instance of PhoneNumber' do expect(instance).to be_instance_of(Bandwidth::Bxml::PhoneNumber) expect(instance).to be_a(Bandwidth::Bxml::Verb) end it 'tests the to_bxml method of the PhoneNumber instance' do expected = "\n+19195551234\n" expect(instance.to_bxml).to eq(expected) end it 'tests the set_attributes method of the PhoneNumber instance' do instance.set_attributes(new_attributes) expected = "\n+19195551234\n" expect(instance.to_bxml).to eq(expected) end end end