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