1234567891011121314151617 #!/usr/bin/perl -wuse strict;use Test;BEGIN {# require "t/TestDetails.pm"; import TestDetails; plan tests => 1; $SIG{__WARN__} = sub { ok(0); exit; }}# Check that we compile without warnings.use Syndication::NewsML;ok(1);
#!/usr/bin/perl -w
use
strict;
Test;
BEGIN {
# require "t/TestDetails.pm"; import TestDetails;
plan
tests
=> 1;
$SIG
{__WARN__} =
sub
{
ok(0);
exit
;
}
# Check that we compile without warnings.
Syndication::NewsML;
ok(1);