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/00_modules.t
diff options
context:
space:
mode:
Diffstat (limited to 'nagios-plugins-contrib-24.20190301~bpo9+1/check_rbl/check_rbl-1.4.4/t/00_modules.t')
-rw-r--r--nagios-plugins-contrib-24.20190301~bpo9+1/check_rbl/check_rbl-1.4.4/t/00_modules.t61
1 files changed, 61 insertions, 0 deletions
diff --git a/nagios-plugins-contrib-24.20190301~bpo9+1/check_rbl/check_rbl-1.4.4/t/00_modules.t b/nagios-plugins-contrib-24.20190301~bpo9+1/check_rbl/check_rbl-1.4.4/t/00_modules.t
new file mode 100644
index 0000000..ac1dbcb
--- /dev/null
+++ b/nagios-plugins-contrib-24.20190301~bpo9+1/check_rbl/check_rbl-1.4.4/t/00_modules.t
@@ -0,0 +1,61 @@
+#!perl
+
+use 5.00800;
+
+use strict;
+use warnings;
+
+use Test::More tests => 33;
+
+our $VERSION = '1.4.0';
+
+my $plugin_name;
+if ( eval { require Monitoring::Plugin } ) {
+ $plugin_name = 'Monitoring::Plugin';
+}
+else {
+ $plugin_name = 'Nagios::Plugin';
+}
+
+use_ok($plugin_name);
+can_ok( $plugin_name, 'new' );
+can_ok( $plugin_name, 'nagios_exit' );
+can_ok( $plugin_name, 'add_perfdata' );
+can_ok( $plugin_name, 'perfdata' );
+
+use_ok( $plugin_name . '::Getopt' );
+can_ok( $plugin_name . '::Getopt', 'new' );
+can_ok( $plugin_name . '::Getopt', 'arg' );
+can_ok( $plugin_name . '::Getopt', 'getopts' );
+can_ok( $plugin_name . '::Getopt', 'get' );
+
+use_ok( $plugin_name . '::Threshold' );
+can_ok( $plugin_name . '::Threshold', 'new' );
+can_ok( $plugin_name . '::Threshold', 'set_thresholds' );
+
+use_ok('IO::Select');
+can_ok( 'IO::Select', 'new' );
+can_ok( 'IO::Select', 'count' );
+can_ok( 'IO::Select', 'can_read' );
+can_ok( 'IO::Select', 'remove' );
+can_ok( 'IO::Select', 'handles' );
+
+use_ok('Net::DNS::Resolver');
+can_ok( 'Net::DNS::Resolver', 'new' );
+can_ok( 'Net::DNS::Resolver', 'can' );
+can_ok( 'Net::DNS::Resolver', 'bgsend' );
+can_ok( 'Net::DNS::Resolver', 'bgread' );
+
+use_ok('English');
+use_ok('Readonly');
+
+use_ok('Net::IP');
+can_ok( 'Net::IP', 'ip_expand_address' );
+
+use_ok('Data::Validate::Domain');
+can_ok( 'Data::Validate::Domain', 'is_hostname' );
+
+use_ok('Data::Validate::IP');
+can_ok( 'Data::Validate::IP', 'is_ipv4' );
+can_ok( 'Data::Validate::IP', 'is_ipv6' );
+