File: 30-was_g_blocked.t

package info (click to toggle)
libmediawiki-bot-perl 5.007000-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 656 kB
  • sloc: perl: 1,992; makefile: 5
file content (18 lines) | stat: -rw-r--r-- 525 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use warnings;
use Test::RequiresInternet 'meta.wikimedia.org' => 80;
use Test::More tests => 2;

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

my $bot = MediaWiki::Bot->new({
    agent   => "MediaWiki::Bot tests (https://metacpan.org/MediaWiki::Bot; $t)",
    host    => 'meta.wikimedia.org',
});

# 127.0.0.1 has been blocked before
ok $bot->was_g_blocked('127.0.0.1'), q{127.0.0.1 has been globalblocked};

# 127.0.4.4 probably hasn't been
ok !$bot->was_g_blocked('127.0.4.4'), q{127.0.4.4 hasn't been globalblocked};