Sha256: 02a7103d4f7ed5dedea3ac9b4793f42f8fe2738a68c7054d4518091b5590532c
Contents?: true
Size: 572 Bytes
Versions: 16
Compression:
Stored size: 572 Bytes
Contents
# Unit tests for Bandwidth::Bxml::ResumeRecording describe 'Bandwidth::Bxml::ResumeRecording' do let(:instance) { Bandwidth::Bxml::ResumeRecording.new } describe 'test an instance of ResumeRecording' do it 'validates instance of ResumeRecording' do expect(instance).to be_instance_of(Bandwidth::Bxml::ResumeRecording) expect(instance).to be_a(Bandwidth::Bxml::Verb) end it 'tests the to_bxml method of the ResumeRecording instance' do expected = "\n<ResumeRecording/>\n" expect(instance.to_bxml).to eq(expected) end end end
Version data entries
16 entries across 16 versions & 1 rubygems