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