Sha256: 16354c3532e79a7168f33279b4ddac2ea226f407fbadd8a7641de7bb25e3dce6

Contents?: true

Size: 538 Bytes

Versions: 25

Compression:

Stored size: 538 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

module Punchblock
  module Command
    describe Accept do
      it 'registers itself' do
        RayoNode.class_from_registration(:accept, 'urn:xmpp:rayo:1').should be == Accept
      end

      it_should_behave_like 'command_headers'

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

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

        it { should be_instance_of Accept }
      end
    end
  end
end # Punchblock

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
punchblock-1.1.0 spec/punchblock/command/accept_spec.rb
punchblock-1.0.0 spec/punchblock/command/accept_spec.rb
punchblock-0.12.0 spec/punchblock/command/accept_spec.rb
punchblock-0.11.0 spec/punchblock/command/accept_spec.rb
punchblock-0.10.0 spec/punchblock/command/accept_spec.rb