The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use lib "t/lib";
use Test::More tests=>19;

BEGIN{ use_ok( "Net::Jabber" ); }

require "t/mytestlib.pl";

my $x = new Net::Jabber::Stanza("x");
ok( defined($x), "new()" );
isa_ok( $x, "Net::Jabber::Stanza" );
isa_ok( $x, "Net::XMPP::Stanza" );

testScalar($x,"XMLNS","jabber:x:signed");

testSetScalar($x,"Signature","signature");

is( $x->GetXML(), "<x xmlns='jabber:x:signed'>signature</x>", "GetXML()" );


my $x2 = new Net::Jabber::Stanza("x");
ok( defined($x2), "new()" );
isa_ok( $x2, "Net::Jabber::Stanza" );
isa_ok( $x2, "Net::XMPP::Stanza" );

testScalar($x2,"XMLNS","jabber:x:signed");

$x2->SetSigned(signature=>"signature");

testPostScalar($x2, "Signature","signature");

is( $x2->GetXML(), "<x xmlns='jabber:x:signed'>signature</x>", "GetXML()" );