From: Dobrica Pavlinusic Date: Fri, 6 Aug 2010 20:11:39 +0000 (+0200) Subject: use Pod::Readme X-Git-Tag: RFID-Biblio-0.02~41 X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=refs%2Fheads%2Freaders;p=Biblio-RFID.git use Pod::Readme --- diff --git a/t/readme.t b/t/readme.t new file mode 100755 index 0000000..522b3ed --- /dev/null +++ b/t/readme.t @@ -0,0 +1,10 @@ +#!/usr/bin/perl -T + +use Test::More tests => 3; + +BEGIN { + use_ok( 'Pod::Readme' ); +} + +ok( my $parser = Pod::Readme->new, 'Pod::Readme' ); +ok( $parser->parse_from_file( 'lib/RFID/Biblio.pm' => 'README' ), 'README' );