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