Sha256: ae4f99255dc6223108c7cb79ecf38ffa1d0d313ce73f2c671250a226fadaa59e
Contents?: true
Size: 850 Bytes
Versions: 3
Compression:
Stored size: 850 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Adhearsion::Event::DTMF do it 'registers itself' do expect(Adhearsion::Rayo::RayoNode.class_from_registration(:dtmf, 'urn:xmpp:rayo:1')).to eq(described_class) end describe "from a stanza" do let(:stanza) { "<dtmf xmlns='urn:xmpp:rayo:1' signal='#' />" } subject { Adhearsion::Rayo::RayoNode.from_xml parse_stanza(stanza).root, '9f00061', '1' } it { is_expected.to be_instance_of described_class } it_should_behave_like 'event' describe '#signal' do subject { super().signal } it { is_expected.to eq('#') } end end describe "when setting options in initializer" do subject do described_class.new :signal => '#' end describe '#signal' do subject { super().signal } it { is_expected.to eq('#') } end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
adhearsion-3.0.0.rc1 | spec/adhearsion/event/dtmf_spec.rb |
adhearsion-3.0.0.beta2 | spec/adhearsion/event/dtmf_spec.rb |
adhearsion-3.0.0.beta1 | spec/adhearsion/event/dtmf_spec.rb |