Sha256: f05cf724ce3e681e938c0445e8a78bba6dd0e08b88ccbce2d394896188bca003
Contents?: true
Size: 1.02 KB
Versions: 7
Compression:
Stored size: 1.02 KB
Contents
# encoding: utf-8 require 'spec_helper' module Punchblock module Command describe Unmute do it 'registers itself' do expect(RayoNode.class_from_registration(:unmute, 'urn:xmpp:rayo:1')).to eq(described_class) end describe "from a stanza" do let(:stanza) { '<unmute xmlns="urn:xmpp:rayo:1"/>' } subject { RayoNode.from_xml parse_stanza(stanza).root, '9f00061', '1' } it { should be_instance_of described_class } end describe "exporting to Rayo" do it "should export to XML that can be understood by its parser" do new_instance = RayoNode.from_xml subject.to_rayo expect(new_instance).to be_instance_of described_class end it "should render to a parent node if supplied" do doc = Nokogiri::XML::Document.new parent = Nokogiri::XML::Node.new 'foo', doc doc.root = parent rayo_doc = subject.to_rayo(parent) expect(rayo_doc).to eq(parent) end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems