[perl #45823] [PATCH] v5.8.8. pod2html: <a name="example"> anchor, but <a href="item_...
[p5sagit/p5-mst-13.2.git] / lib / Pod / t / contains_pod.t
CommitLineData
fb59f973 1#!/usr/bin/env perl
2
3# Copyright (C) 2005 Joshua Hoblitt
4#
5# $Id$
6
7use strict;
8
9BEGIN {
10 if( $ENV{PERL_CORE} ) {
11 chdir 't';
12 @INC = '../lib';
13 } else {
14 use lib qw( ./lib );
15 }
16}
17
18
19use Test::More tests => 1;
20
21use Pod::Find qw( contains_pod );
22
23{
24 ok(contains_pod('lib/contains_pod.xr'), "contains pod");
25}