git.lirion.de

Of git, get, and gud

summaryrefslogtreecommitdiffstats
path: root/nagios-plugins-contrib-24.20190301~bpo9+1/check_rbl/check_rbl-1.4.4/t/01_validation.t
blob: c76f3fb30f8186c81fe431972a40eb0993cfbf2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!perl

use 5.00800;

use strict;
use warnings;

use File::Spec;
use Test::More tests => 1;

our $VERSION = '1.4.0';

my $check_rbl = File::Spec->catfile(qw(blib script check_rbl));

require_ok($check_rbl);

my $plugin_module = load_module( 'Monitoring::Plugin', 'Nagios::Plugin' );
our $plugin = $plugin_module->new( shortname => 'CHECK_RBL' );

1;