forked from radiator-software/p5-net-ssleay
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't run author-only tests during regular test suite execution
The following author-only tests are run as part of the standard test suite: * t/local/01_pod.t * t/local/02_pod_coverage.t * t/local/kwalitee.t These only need to be run as part of CI jobs and release testing, and are usually skipped on end-user machines anyway (owing to their stealth dependency on the non-core Test::Pod, Test::Pod::Coverage and Test::Kwalitee modules respectively). Move these tests to the xt/ directory, declare their Test:: dependencies as development prerequisites, and add an xtest target to the generated Makefile that runs these tests. Closes radiator-software#392.
- Loading branch information
1 parent
b458fb5
commit 1e08a87
Showing
8 changed files
with
42 additions
and
47 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 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
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Ensure module distribution passes Kwalitee checks | ||
|
||
use lib 'inc'; | ||
|
||
use Test::Net::SSLeay; | ||
|
||
use Test::Kwalitee qw(kwalitee_ok); | ||
|
||
kwalitee_ok(); | ||
|
||
done_testing(); |
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,17 @@ | ||
# Ensure all pod-formatted documentation is valid | ||
|
||
use lib 'inc'; | ||
|
||
use Test::Net::SSLeay; | ||
|
||
use Test::Pod; | ||
|
||
all_pod_files_ok( | ||
qw( | ||
blib/lib/Net/SSLeay.pm | ||
blib/lib/Net/SSLeay/Handle.pm | ||
helper_script/generate-test-pki | ||
inc/Test/Net/SSLeay.pm | ||
inc/Test/Net/SSLeay/Socket.pm | ||
) | ||
); |
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