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