Skip to content

Commit

Permalink
Merge pull request #14 from paultcochrane/pr/add-missing-strictures
Browse files Browse the repository at this point in the history
Add missing strictures
  • Loading branch information
briandfoy committed Oct 29, 2017
2 parents 051863f + 045fe00 commit 38d62c2
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions hack/mojo.pl
@@ -1,3 +1,5 @@
use strict;
use warnings;
use Module::Release;

my $release = Module::Release->new;
Expand Down
3 changes: 3 additions & 0 deletions t/compile.t
@@ -1,3 +1,6 @@
use strict;
use warnings;

use Test::More tests => 2;

my $file = 'blib/script/release';
Expand Down
3 changes: 3 additions & 0 deletions t/load.t
@@ -1,3 +1,6 @@
use strict;
use warnings;

my @classes = qw(
Module::Release
Module::Release::Kwalitee
Expand Down
3 changes: 3 additions & 0 deletions t/no_releaserc_can_die.t
Expand Up @@ -9,6 +9,9 @@ Reported by Sagar Shah.
=cut

use strict;
use warnings;

use Test::More;

BEGIN {
Expand Down
2 changes: 2 additions & 0 deletions t/pod.t
@@ -1,3 +1,5 @@
use strict;
use warnings;
use Test::More;
eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
Expand Down
3 changes: 3 additions & 0 deletions t/pod_coverage.t
@@ -1,3 +1,6 @@
use strict;
use warnings;

use Test::More;
eval "use Test::Pod::Coverage 1.00";

Expand Down
2 changes: 2 additions & 0 deletions xt/changes.t
@@ -1,3 +1,5 @@
use strict;
use warnings;
use Test::More;
eval 'use Test::CPAN::Changes';
plan skip_all => 'Test::CPAN::Changes required for this test' if $@;
Expand Down

0 comments on commit 38d62c2

Please sign in to comment.