File: 00-load.t

package info (click to toggle)
libnet-jabber-bot-perl 2.1.7-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 276 kB
  • sloc: perl: 1,279; makefile: 2; sh: 1
file content (14 lines) | stat: -rw-r--r-- 316 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!perl -T

# Trap for these modules being avail or we can't do our tests...

use Test::More tests => 1;

BEGIN {
    use_ok( 'Net::Jabber::Bot' );
}

eval { require Net::Jabber::Bot };
BAIL_OUT("Net::Jabber::Bot not installed", 2) if $@;

diag( "Testing Net::Jabber::Bot $Net::Jabber::Bot::VERSION, Perl $], $^X" );