File: 01-use.t

package info (click to toggle)
libnet-ldap-server-perl 0.43-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 116 kB
  • sloc: perl: 282; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 168 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl

use strict;
use warnings;

use Test;
BEGIN { plan tests => 1 }

use ExtUtils::testlib;
use Net::LDAP::Server;
ok eval "require Net::LDAP::Server";

1;