Sha256: 8bb85ea11f3e0cc253eddbdf143bd767b5765d99caffb1b0dc1b0cd06bcb2dd5
Contents?: true
Size: 481 Bytes
Versions: 25
Compression:
Stored size: 481 Bytes
Contents
# encoding: utf-8 require 'spec_helper' module Punchblock module Command describe Mute do it 'registers itself' do RayoNode.class_from_registration(:mute, 'urn:xmpp:rayo:1').should be == Mute end describe "from a stanza" do let(:stanza) { '<mute xmlns="urn:xmpp:rayo:1"/>' } subject { RayoNode.import parse_stanza(stanza).root, '9f00061', '1' } it { should be_instance_of Mute } end end end end # Punchblock
Version data entries
25 entries across 25 versions & 1 rubygems