File: 00_00_load.t

package info (click to toggle)
libpod-simple-wiki-perl 0.11-1
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 324 kB
  • ctags: 110
  • sloc: perl: 2,485; makefile: 44
file content (19 lines) | stat: -rw-r--r-- 413 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/perl -w

###############################################################################
#
# A test for Pod::Simple::Wiki.
#
# Test that the module loads.
#
# reverse(''), August 2004, John McNamara, jmcnamara@cpan.org
#

use strict;

use Test::More tests => 2;

BEGIN { use_ok( 'Pod::Simple::Wiki' ); }

my $parser = Pod::Simple::Wiki->new;
isa_ok( $parser, 'Pod::Simple::Wiki' );