Sha256: d7fc2a8d38193558359c79c41badb076d85677e8e50b12ac9eedadd337124d2b

Contents?: true

Size: 591 Bytes

Versions: 7

Compression:

Stored size: 591 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

module Punchblock
  class Event
    describe InputTimersStarted do
      it 'registers itself' do
        RayoNode.class_from_registration(:'input-timers-started', 'urn:xmpp:rayo:prompt:1').should be == described_class
      end

      describe "from a stanza" do
        let(:stanza) { "<input-timers-started xmlns='urn:xmpp:rayo:prompt:1' />" }

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

        it { should be_instance_of described_class }

        it_should_behave_like 'event'
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
punchblock-2.5.2 spec/punchblock/event/input_timers_started_spec.rb
punchblock-2.5.1 spec/punchblock/event/input_timers_started_spec.rb
punchblock-2.5.0 spec/punchblock/event/input_timers_started_spec.rb
punchblock-2.4.2 spec/punchblock/event/input_timers_started_spec.rb
punchblock-2.4.0 spec/punchblock/event/input_timers_started_spec.rb
punchblock-2.3.1 spec/punchblock/event/input_timers_started_spec.rb
punchblock-2.3.0 spec/punchblock/event/input_timers_started_spec.rb