Sha256: 7b3ba79e1370032ef2e32aab42055adc1a596bcf1de4694dca2c9ce4da0eb9bd
Contents?: true
Size: 1.1 KB
Versions: 1
Compression:
Stored size: 1.1 KB
Contents
require 'spec_helper' def muc_xml <<-XML <presence from='hag66@shakespeare.lit/pda' id='n13mt3l' to='coven@chat.shakespeare.lit/thirdwitch'> <x xmlns='http://jabber.org/protocol/muc'/> </presence> XML end describe 'Blather::Stanza::Presence::MUC' do it 'registers itself' do Blather::XMPPNode.class_from_registration(:x, 'http://jabber.org/protocol/muc' ).must_equal Blather::Stanza::Presence::MUC end it 'must be importable' do c = Blather::XMPPNode.import(parse_stanza(muc_xml).root).must_be_instance_of Blather::Stanza::Presence::MUC end it 'ensures a form node is present on create' do c = Blather::Stanza::Presence::MUC.new c.xpath('ns:x', :ns => Blather::Stanza::Presence::MUC.registered_ns).wont_be_empty end it 'ensures a form node exists when calling #muc' do c = Blather::Stanza::Presence::MUC.new c.remove_children :x c.xpath('ns:x', :ns => Blather::Stanza::Presence::MUC.registered_ns).must_be_empty c.muc.wont_be_nil c.xpath('ns:x', :ns => Blather::Stanza::Presence::MUC.registered_ns).wont_be_empty end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
blather-0.6.1 | spec/blather/stanza/presence/muc_spec.rb |