require 'spec_helper' module Punchblock describe Ref do it 'registers itself' do RayoNode.class_from_registration(:ref, 'urn:xmpp:rayo:1').should == Ref end describe "from a stanza" do let(:stanza) { "" } subject { RayoNode.import parse_stanza(stanza).root, '9f00061', '1' } it { should be_instance_of Ref } it_should_behave_like 'event' its(:id) { should == 'fgh4590' } end end end # Punchblock