File: contains_pod.t

package info (click to toggle)
libpod-parser-perl 1.65-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 476 kB
  • sloc: perl: 2,270; sh: 9; makefile: 2
file content (19 lines) | stat: -rwxr-xr-x 306 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env perl

# Copyright (C) 2005  Joshua Hoblitt
#
# $Id$

use strict;

use Test::More tests => 2;

use Pod::Find qw( contains_pod );

{
    ok(contains_pod('t/pod/contains_pod.xr'), "contains pod");
}

{
    ok(contains_pod('t/pod/contains_bad_pod.xr'), "contains bad pod");
}