The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/env perl
use strict;
use warnings;

use Test::More;

BEGIN {
    use_ok('Carp');
    use_ok('LWP::UserAgent');
    use_ok('IO::Pipe');
    use_ok('Class::Accessor::Grouped');
    use_ok( 'WWW::FreeProxyListsCom' );
    use_ok( 'WWW::ProxyChecker' );
}

diag( "Testing WWW::ProxyChecker $WWW::ProxyChecker::VERSION, Perl $], $^X" );

my $o = WWW::ProxyChecker->new;
isa_ok($o,'WWW::ProxyChecker');
can_ok($o,qw(
    max_kids
    debug
    alive
    check_sites
    max_working_per_kid
    timeout
    agent
    new
    check
    _start_checker
    _check_proxy)
);

done_testing();