The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

CPAN::Search::Tester - Interface to search CPAN module tester.

VERSION

Version 0.03

DESCRIPTION

This module is a very thin wrapper for "Find A Tester" feature provided by cpantesters.org.

METHODS

search()

Search a CPAN Tester for the given ID or GUID. Please use with care and do *NOT* generate spam attacks on testers. Currently CPAN Testers reports are publicly available via the CPAN Testers Reports site, using a unique ID used by 'cpanstats' database or a GUID used by the Metabase data store. Either of these can be used to perform a lookup. The ID or GUID is displayed via the report display on the CPAN Testers Reports site. For example,

    http://www.cpantesters.org/cpan/report/7019327
    http://www.cpantesters.org/cpan/report/07019335-b19f-3f77-b713-d32bba55d77f

Here 7019327 is the ID and 07019335-b19f-3f77-b713-d32bba55d77f is the GUID.

    use strict; use warnings;
    use CPAN::Search::Tester;

    my $tester = CPAN::Search::Tester->new();

    print $tester->search('7019327') . "\n";
    # or
    print $tester->search('07019335-b19f-3f77-b713-d32bba55d77f') . "\n";
    # or
    print $tester->search(id => '7019327') . "\n";
    # or
    print $tester->search(guid => '07019335-b19f-3f77-b713-d32bba55d77f') . "\n";

AUTHOR

Mohammad S Anwar, <mohammad.anwar at yahoo.com>

BUGS

Please report any bugs or feature requests to bug-cpan-search-tester at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=CPAN-Search-Tester. I will be notified and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc CPAN::Search::Tester

You can also look for information at:

ACKNOWLEDGEMENT

This wouldn't have been possible without the service of cpantesters.org.

LICENSE AND COPYRIGHT

Copyright 2011 Mohammad S Anwar.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.

DISCLAIMER

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.