Skip to content

Commit

Permalink
resolved merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Geoff Franks committed Oct 28, 2015
2 parents 8fffbd8 + e8020a4 commit 561fc9d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions t/inheritance.t
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
use warnings;
use strict;

use Test::MockModule;
use Test::More;

Expand Down
1 change: 1 addition & 0 deletions t/mockmodule.t
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use warnings;
use strict;

use Test::More;

use lib "t/lib";
Expand Down
4 changes: 4 additions & 0 deletions t/pod.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
use warnings;
use strict;

use Test::More;

eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
all_pod_files_ok();
4 changes: 4 additions & 0 deletions t/pod_coverage.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
use warnings;
use strict;

use Test::More;

eval "use Test::Pod::Coverage 1.00";
plan skip_all => "Test::Pod::Coverage 1.00 required for testing pod coverage" if $@;
all_pod_coverage_ok({also_private => [qr/^TRACE(?:F|_HERE)?|DUMP$/]});

0 comments on commit 561fc9d

Please sign in to comment.