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