-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
23 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,5 @@ lib/HTML/Tagset.pm | |
Makefile.PL | ||
MANIFEST | ||
README.md | ||
t/00_about_verbose.t | ||
t/01_old_junk.t | ||
t/00-load.t | ||
t/pod.t |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!perl -w | ||
|
||
use Test::More tests => 1; | ||
|
||
use HTML::Tagset; | ||
|
||
diag( "Testing HTML::Tagset $HTML::Tagset::VERSION, Test::More $Test::More::VERSION, Perl $], $^X" ); | ||
|
||
pass( 'Module loaded' ); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,15 @@ | ||
#!perl -w | ||
#!perl | ||
|
||
use strict; | ||
use warnings; | ||
|
||
use Test::More; | ||
eval "use Test::Pod 1.14"; | ||
plan skip_all => "Test::Pod 1.14 required for testing POD" if $@; | ||
all_pod_files_ok(); | ||
|
||
my $module = 'Test::Pod 1.14'; | ||
|
||
if ( eval "use $module; 1;" ) { ## no critic (ProhibitStringyEval) | ||
all_pod_files_ok(); | ||
} | ||
else { | ||
plan skip_all => "$module required for testing POD"; | ||
} |