Sha256: 3b1ad31ef53fea54ce60a5a1407544f5b34b99ec1bcb4e907a0b2326056feb3f

Contents?: true

Size: 769 Bytes

Versions: 17

Compression:

Stored size: 769 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

module Punchblock
  class Event
    describe DTMF do
      it 'registers itself' do
        RayoNode.class_from_registration(:dtmf, 'urn:xmpp:rayo:1').should be == described_class
      end

      describe "from a stanza" do
        let(:stanza) { "<dtmf xmlns='urn:xmpp:rayo:1' signal='#' />" }

        subject { RayoNode.from_xml parse_stanza(stanza).root, '9f00061', '1' }

        it { should be_instance_of described_class }

        it_should_behave_like 'event'

        its(:signal) { should be == '#' }
      end

      describe "when setting options in initializer" do
        subject do
          described_class.new :signal => '#'
        end

        its(:signal) { should be == '#' }
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
punchblock-2.5.2 spec/punchblock/event/dtmf_spec.rb
punchblock-2.5.1 spec/punchblock/event/dtmf_spec.rb
punchblock-2.5.0 spec/punchblock/event/dtmf_spec.rb
punchblock-2.4.2 spec/punchblock/event/dtmf_spec.rb
punchblock-2.4.0 spec/punchblock/event/dtmf_spec.rb
punchblock-2.3.1 spec/punchblock/event/dtmf_spec.rb
punchblock-2.3.0 spec/punchblock/event/dtmf_spec.rb
punchblock-2.2.2 spec/punchblock/event/dtmf_spec.rb
punchblock-2.2.1 spec/punchblock/event/dtmf_spec.rb
punchblock-2.2.0 spec/punchblock/event/dtmf_spec.rb
punchblock-2.1.1 spec/punchblock/event/dtmf_spec.rb
punchblock-2.1.0 spec/punchblock/event/dtmf_spec.rb
punchblock-2.0.2 spec/punchblock/event/dtmf_spec.rb
punchblock-2.0.1 spec/punchblock/event/dtmf_spec.rb
punchblock-2.0.0 spec/punchblock/event/dtmf_spec.rb
punchblock-2.0.0.beta2 spec/punchblock/event/dtmf_spec.rb
punchblock-2.0.0.beta1 spec/punchblock/event/dtmf_spec.rb