The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use strict;
use warnings;
use Test::More tests => 2;

use MediaWiki::Bot;
my $t = __FILE__;

my $bot = MediaWiki::Bot->new({
    agent   => "MediaWiki::Bot tests ($t)",
    host    => 'test.wikipedia.org',
});

if(defined($ENV{'PWPMakeTestSetWikiHost'})) {
    $bot->set_wiki($ENV{'PWPMakeTestSetWikiHost'}, $ENV{'PWPMakeTestSetWikiDir'});
}

cmp_ok($bot->get_last('User:Mike.lifeguard/06-get history.t', 'Not a real editor'),
    '>', 0,     'Find the last revision');

is($bot->get_last('User:Mike.lifeguard/06-get history.t', 'Mike.lifeguard'),
    undef,      'There are no revisions not by Mike.lifeguard');