Subject: | better dist |
Installation with CPAN shell fails due to absence of tests.
I wrote 2 simple tests and better Makefile.PL. Please use fresh
ExtUtils::MakeMaker to create distribution.
Also I attached ready distribution.
--
Alexandr Ciornii, http://chorny.net
Subject: | XML-RPC-0.9.tar.gz |
Message body not shown because it is not plain text.
Subject: | 01.t |
#!perl -T
use Test::More tests => 1;
use XML::RPC 0.8;
my $xmlrpc = XML::RPC->new('http://example.ex');
isa_ok($xmlrpc,'XML::RPC');
Subject: | Makefile.PL |
use ExtUtils::MakeMaker;
WriteMakefile(
AUTHOR => 'Niek Albers',
ABSTRACT => 'Pure Perl implementation for an XML-RPC client and server',
NAME => 'XML-RPC',
VERSION_FROM => 'lib/XML/RPC.pm',
PREREQ_PM => {
'XML::TreePP' => '0',
'LWP::UserAgent' => '0',
# 'HTTP::Lite' => '0',
# 'Jcode' => '0', # on Perl 5.005/5.6.x
'Test::More' => 0.17, #build
},
($ExtUtils::MakeMaker::VERSION ge '6.31'?
('LICENSE' => 'perl', ) : ()),
);
Subject: | 00-load.t |
#!perl -T
use Test::More tests => 1;
BEGIN {
use_ok( 'XML::RPC' );
}
diag( "Testing Roman $XML::RPC::VERSION, Perl $], $^X" );