Skip to content

Commit

Permalink
more changes for dzilification
Browse files Browse the repository at this point in the history
  • Loading branch information
apocalypse committed Dec 14, 2010
1 parent 45ddcf6 commit d050356
Show file tree
Hide file tree
Showing 26 changed files with 23 additions and 80 deletions.
1 change: 0 additions & 1 deletion dist.ini
@@ -1,3 +1,2 @@
name = Test-Apocalypse
[@Apocalyptic]

6 changes: 5 additions & 1 deletion lib/Test/Apocalypse.pm
Expand Up @@ -335,6 +335,10 @@ It would be nice to signal INTERNET_TESTING=0 or something zany like that so thi
=over 4
=item * L<Test::Distribution>
This module was a plugin in this testsuite but I don't need it. All the functionality in it is already replicated in the plugins :)
=item * L<Test::Module::Used> and L<Test::Dependencies>
They were plugins in this testsuite but since I started coding with L<Moose>, they don't work! I've switched to my homebrew solution
Expand All @@ -350,7 +354,7 @@ I always use tabs! :(
=item * L<Test::CheckManifest>
This was a buggy dist that I dropped and is now using L<Test::DistManifest>
This was a buggy module that I dropped and is now using L<Test::DistManifest>
=item * L<Test::Dist>
Expand Down
2 changes: 0 additions & 2 deletions lib/Test/Apocalypse/CPANMeta.pm
Expand Up @@ -2,8 +2,6 @@ package Test::Apocalypse::CPANMeta;

# ABSTRACT: Plugin for Test::CPAN::Meta

use Test::More;

use Test::CPAN::Meta 0.13;

sub do_test {
Expand Down
14 changes: 11 additions & 3 deletions lib/Test/Apocalypse/CheckChanges.pm
Expand Up @@ -2,12 +2,20 @@ package Test::Apocalypse::CheckChanges;

# ABSTRACT: Plugin for Test::CheckChanges

use Test::More;
# TODO oh please don't set plan in import!
#use Test::CheckChanges 0.08;

use Test::CheckChanges 0.08;
# TODO pester upstream about this hunk of code:
#END {
# if (!defined $test->has_plan()) {
# $test->done_testing(1);
# }
#}

sub do_test {
ok_changes();
require Test::CheckChanges;
Test::CheckChanges->import;
Test::CheckChanges::ok_changes();

return;
}
Expand Down
2 changes: 0 additions & 2 deletions lib/Test/Apocalypse/Compile.pm
Expand Up @@ -2,8 +2,6 @@ package Test::Apocalypse::Compile;

# ABSTRACT: Plugin for Test::Compile

use Test::More;

use Test::Compile 0.11;

sub do_test {
Expand Down
2 changes: 0 additions & 2 deletions lib/Test/Apocalypse/ConsistentVersion.pm
Expand Up @@ -2,8 +2,6 @@ package Test::Apocalypse::ConsistentVersion;

# ABSTRACT: Plugin for Test::ConsistentVersion

use Test::More;

use Test::ConsistentVersion 0.2.2;

sub do_test {
Expand Down
2 changes: 0 additions & 2 deletions lib/Test/Apocalypse/DistManifest.pm
Expand Up @@ -2,8 +2,6 @@ package Test::Apocalypse::DistManifest;

# ABSTRACT: Plugin for Test::DistManifest

use Test::More;

use Test::DistManifest 1.005;

sub do_test {
Expand Down
29 changes: 0 additions & 29 deletions lib/Test/Apocalypse/Distribution.pm

This file was deleted.

2 changes: 0 additions & 2 deletions lib/Test/Apocalypse/EOL.pm
Expand Up @@ -2,8 +2,6 @@ package Test::Apocalypse::EOL;

# ABSTRACT: Plugin for Test::EOL

use Test::More;

sub _is_release { 1 }

use Test::EOL 0.3;
Expand Down
9 changes: 5 additions & 4 deletions lib/Test/Apocalypse/FilePortability.pm
Expand Up @@ -2,12 +2,13 @@ package Test::Apocalypse::FilePortability;

# ABSTRACT: Plugin for Test::Portability::Files

use Test::More;

use Test::Portability::Files 0.05;
# TODO oh please don't set plan in import!
#use Test::Portability::Files 0.05;

sub do_test {
run_tests();
require Test::Portability::Files;
Test::Portability::Files->import;
Test::Portability::Files::run_tests();

return;
}
Expand Down
2 changes: 0 additions & 2 deletions lib/Test/Apocalypse/Fixme.pm
Expand Up @@ -2,8 +2,6 @@ package Test::Apocalypse::Fixme;

# ABSTRACT: Plugin for Test::Fixme

use Test::More;

# RELEASE test only!
sub _is_release { 1 }

Expand Down
2 changes: 0 additions & 2 deletions lib/Test/Apocalypse/HasVersion.pm
Expand Up @@ -2,8 +2,6 @@ package Test::Apocalypse::HasVersion;

# ABSTRACT: Plugin for Test::HasVersion

use Test::More;

use Test::HasVersion 0.012;

sub do_test {
Expand Down
2 changes: 0 additions & 2 deletions lib/Test/Apocalypse/METAyml.pm
Expand Up @@ -2,8 +2,6 @@ package Test::Apocalypse::METAyml;

# ABSTRACT: Plugin for Test::YAML::Meta

use Test::More;

use Test::YAML::Meta 0.14;

sub do_test {
Expand Down
2 changes: 0 additions & 2 deletions lib/Test/Apocalypse/MinimumVersion.pm
Expand Up @@ -2,8 +2,6 @@ package Test::Apocalypse::MinimumVersion;

# ABSTRACT: Plugin for Test::MinimumVersion

use Test::More;

use Test::MinimumVersion 0.101080;

sub do_test {
Expand Down
2 changes: 0 additions & 2 deletions lib/Test/Apocalypse/NoBreakpoints.pm
Expand Up @@ -2,8 +2,6 @@ package Test::Apocalypse::NoBreakpoints;

# ABSTRACT: Plugin for Test::NoBreakpoints

use Test::More;

use Test::NoBreakpoints 0.13;

sub do_test {
Expand Down
2 changes: 0 additions & 2 deletions lib/Test/Apocalypse/NoPlan.pm
Expand Up @@ -2,8 +2,6 @@ package Test::Apocalypse::NoPlan;

# ABSTRACT: Plugin for Test::NoPlan

use Test::More;

use Test::NoPlan 0.0.6;

sub do_test {
Expand Down
4 changes: 2 additions & 2 deletions lib/Test/Apocalypse/OutdatedPrereqs.pm
Expand Up @@ -7,8 +7,8 @@ use Test::More;
sub _is_release { 1 }

use YAML 0.70;
use CPANPLUS::Configure 0.90;
use CPANPLUS::Backend 0.90;
use CPANPLUS::Configure;
use CPANPLUS::Backend; # TODO I want 0.90 but it doesn't specify a ver?
use version 0.77;
use Module::CoreList 2.23;

Expand Down
2 changes: 0 additions & 2 deletions lib/Test/Apocalypse/PerlCritic.pm
Expand Up @@ -2,8 +2,6 @@ package Test::Apocalypse::PerlCritic;

# ABSTRACT: Plugin for Test::Perl::Critic

use Test::More;

sub _is_release { 1 }

use Test::Perl::Critic 1.02;
Expand Down
2 changes: 0 additions & 2 deletions lib/Test/Apocalypse/Pod.pm
Expand Up @@ -2,8 +2,6 @@ package Test::Apocalypse::Pod;

# ABSTRACT: Plugin for Test::Pod

use Test::More;

use Test::Pod 1.41;

sub do_test {
Expand Down
2 changes: 0 additions & 2 deletions lib/Test/Apocalypse/Pod_Coverage.pm
Expand Up @@ -2,8 +2,6 @@ package Test::Apocalypse::Pod_Coverage;

# ABSTRACT: Plugin for Test::Pod::Coverage

use Test::More;

sub _is_release { 1 }

use Test::Pod::Coverage 1.08;
Expand Down
2 changes: 0 additions & 2 deletions lib/Test/Apocalypse/Pod_LinkCheck.pm
Expand Up @@ -2,8 +2,6 @@ package Test::Apocalypse::Pod_LinkCheck;

# ABSTRACT: Plugin for Test::Pod::LinkCheck

use Test::More;

sub _is_release { 1 }

use Test::Pod::LinkCheck 0.004;
Expand Down
2 changes: 0 additions & 2 deletions lib/Test/Apocalypse/Pod_No404s.pm
Expand Up @@ -2,8 +2,6 @@ package Test::Apocalypse::Pod_No404s;

# ABSTRACT: Plugin for Test::Pod::No404s

use Test::More;

sub _is_release { 1 }

use Test::Pod::No404s 0.01;
Expand Down
2 changes: 0 additions & 2 deletions lib/Test/Apocalypse/Strict.pm
Expand Up @@ -2,8 +2,6 @@ package Test::Apocalypse::Strict;

# ABSTRACT: Plugin for Test::Strict

use Test::More;

use Test::Strict 0.14;

sub do_test {
Expand Down
2 changes: 0 additions & 2 deletions lib/Test/Apocalypse/Synopsis.pm
Expand Up @@ -2,8 +2,6 @@ package Test::Apocalypse::Synopsis;

# ABSTRACT: Plugin for Test::Synopsis

use Test::More;

use Test::Synopsis 0.06;

sub do_test {
Expand Down
2 changes: 0 additions & 2 deletions lib/Test/Apocalypse/UnusedVars.pm
Expand Up @@ -2,8 +2,6 @@ package Test::Apocalypse::UnusedVars;

# ABSTRACT: Plugin for Test::Vars

use Test::More;

# TODO Disabled because Test::Vars doesn't like running under a Test::Block :(
# I think I got it to work using Test::More::subtest() but need to test more...
sub _is_disabled { 1 }
Expand Down
2 changes: 0 additions & 2 deletions lib/Test/Apocalypse/UseAllModules.pm
Expand Up @@ -2,8 +2,6 @@ package Test::Apocalypse::UseAllModules;

# ABSTRACT: Plugin for Test::UseAllModules

use Test::More;

use Test::UseAllModules 0.12;

sub do_test {
Expand Down

0 comments on commit d050356

Please sign in to comment.