-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adjust author tests to be handled by dzil test/xtest appropriately
- Loading branch information
1 parent
91b4020
commit 585aaa1
Showing
9 changed files
with
83 additions
and
103 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
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
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,18 @@ | ||
#!/usr/bin/perl | ||
|
||
use strict; | ||
BEGIN { | ||
$| = 1; | ||
$^W = 1; | ||
} | ||
|
||
my $MODULE = 'Test::Pod 1.44'; | ||
|
||
# Don't run tests for installs | ||
use Test::More; | ||
|
||
# Load the testing module | ||
die "Failed to load required release-testing module $MODULE" | ||
if not eval "use $MODULE; 1"; | ||
|
||
all_pod_files_ok(); |
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
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,20 @@ | ||
#!/usr/bin/perl | ||
|
||
# Test that our META.yml file matches the current specification. | ||
|
||
use strict; | ||
BEGIN { | ||
$| = 1; | ||
$^W = 1; | ||
} | ||
|
||
my $MODULE = 'Test::CPAN::Meta 0.17'; | ||
|
||
# Don't run tests for installs | ||
use Test::More; | ||
|
||
# Load the testing module | ||
die "Failed to load required release-testing module $MODULE" | ||
if not eval "use $MODULE; 1"; | ||
|
||
meta_yaml_ok(); |
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,33 @@ | ||
#!/usr/bin/perl | ||
|
||
# Test that our declared minimum Perl version matches our syntax | ||
|
||
use strict; | ||
BEGIN { | ||
$| = 1; | ||
$^W = 1; | ||
} | ||
|
||
my @MODULES = ( | ||
'File::Find::Rule 0.32', | ||
'File::Find::Rule::Perl 1.09', | ||
'Perl::MinimumVersion 1.25', | ||
'Test::MinimumVersion 0.101080', | ||
); | ||
|
||
# Don't run tests for installs | ||
use Test::More; | ||
|
||
# Load the testing modules | ||
foreach my $MODULE ( @MODULES ) { | ||
die "Failed to load required release-testing module $MODULE" | ||
if not eval "use $MODULE; 1"; | ||
} | ||
|
||
all_minimum_version_from_metayml_ok( { | ||
paths => [ | ||
grep | ||
{ !/14_charsets\.t/ and !/24_v6\// and !/xt\// and !/Token\/Data\.pm/ } | ||
File::Find::Rule->perl_file->in('.') | ||
], | ||
} ); |