Sha256: 2d3754120514f55ea04e7f872520926d5dae977d5ed5914be05173721b10f9c3

Contents?: true

Size: 668 Bytes

Versions: 25

Compression:

Stored size: 668 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

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

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

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

      it { should be_instance_of Ref }

      it_should_behave_like 'event'

      its(:id) { should be == 'fgh4590' }
    end

    describe "when setting options in initializer" do
      subject { Ref.new :id => 'foo' }

      its(:id) { should be == 'foo' }
    end
  end
end # Punchblock

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
punchblock-1.9.4 spec/punchblock/ref_spec.rb
punchblock-1.9.3 spec/punchblock/ref_spec.rb
punchblock-1.9.2 spec/punchblock/ref_spec.rb
punchblock-1.9.1 spec/punchblock/ref_spec.rb
punchblock-1.9.0 spec/punchblock/ref_spec.rb
punchblock-1.8.2 spec/punchblock/ref_spec.rb
punchblock-1.8.1 spec/punchblock/ref_spec.rb
punchblock-1.8.0 spec/punchblock/ref_spec.rb
punchblock-1.7.1 spec/punchblock/ref_spec.rb
punchblock-1.7.0 spec/punchblock/ref_spec.rb
punchblock-1.6.1 spec/punchblock/ref_spec.rb
punchblock-1.6.0 spec/punchblock/ref_spec.rb
punchblock-1.5.3 spec/punchblock/ref_spec.rb
punchblock-1.5.2 spec/punchblock/ref_spec.rb
punchblock-1.5.1 spec/punchblock/ref_spec.rb
punchblock-1.5.0 spec/punchblock/ref_spec.rb
punchblock-1.4.1 spec/punchblock/ref_spec.rb
punchblock-1.4.0 spec/punchblock/ref_spec.rb
punchblock-1.3.0 spec/punchblock/ref_spec.rb
punchblock-1.2.0 spec/punchblock/ref_spec.rb