File: 01-compile.t

package info (click to toggle)
libauthen-krb5-simple-perl 0.42-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 88 kB
  • ctags: 12
  • sloc: perl: 153; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 549 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
###############################################################################
# Authen::Krb5::Simple Test Script
#
# File: 01-compile.t
#
# Purpose: Make sure the modules compiles and loads with no error
#
###############################################################################
#
use Test::More tests => 3;

# 1 - Use test.
#
BEGIN { use_ok('Authen::Krb5::Simple') }

# 2 - Require test.
#
require_ok( Authen::Krb5::Simple );

# 3 - Is what we is.
#
my $krb = Authen::Krb5::Simple->new();
isa_ok( $krb, 'Authen::Krb5::Simple');

###EOF###