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

Version Path
bandwidth-sdk-13.1.2 spec/unit/models/bxml/verbs/stop_gather_spec.rb
bandwidth-sdk-13.1.1 spec/unit/models/bxml/verbs/stop_gather_spec.rb
bandwidth-sdk-13.1.0 spec/unit/models/bxml/verbs/stop_gather_spec.rb
bandwidth-sdk-13.0.0 spec/unit/models/bxml/verbs/stop_gather_spec.rb
bandwidth-sdk-12.1.0 spec/unit/models/bxml/verbs/stop_gather_spec.rb
bandwidth-sdk-11.3.0 spec/models/bxml/verbs/stop_gather_spec.rb
bandwidth-sdk-11.2.0 spec/models/bxml/verbs/stop_gather_spec.rb
bandwidth-sdk-11.1.1 spec/models/bxml/verbs/stop_gather_spec.rb
bandwidth-sdk-11.1.0 spec/models/bxml/verbs/stop_gather_spec.rb
bandwidth-sdk-11.0.0 spec/models/bxml/verbs/stop_gather_spec.rb
bandwidth-sdk-11.0.0.pre.beta.4.0 spec/models/bxml/verbs/stop_gather_spec.rb
bandwidth-sdk-11.0.0.pre.beta.3.1 spec/models/bxml/verbs/stop_gather_spec.rb
bandwidth-sdk-11.0.0.pre.beta.3.0 spec/models/bxml/verbs/stop_gather_spec.rb
bandwidth-sdk-11.0.0.pre.beta.2.0 spec/models/bxml/verbs/stop_gather_spec.rb