Skip to content

Commit

Permalink
remove debug information
Browse files Browse the repository at this point in the history
  • Loading branch information
andreeap committed Mar 23, 2015
1 parent b1f0c43 commit 555e7ac
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 13 deletions.
2 changes: 0 additions & 2 deletions t/release/badpod.t
Expand Up @@ -2,7 +2,6 @@ use Test::More;
use strict;
use warnings;

use DDP;
use lib 't/lib';
use MetaCPAN::TestHelpers;

Expand Down Expand Up @@ -37,7 +36,6 @@ sub test_bad_pod {
is $file->sloc, 3, 'sloc';
is $file->slop, 4, 'slop';

p $file->{pod_lines};
is_deeply $file->{pod_lines}, [ [ 5, 7 ], ], 'no pod_lines';

is ${ $file->pod },
Expand Down
3 changes: 0 additions & 3 deletions t/release/binary-data.t
Expand Up @@ -2,7 +2,6 @@ use Test::More;
use strict;
use warnings;

use DDP;
use lib 't/lib';
use MetaCPAN::TestHelpers;

Expand Down Expand Up @@ -50,7 +49,6 @@ sub test_binary_data {
is $file->sloc, 4, 'sloc';
is $file->slop, 0, 'slop';

p $file->{pod_lines};
is_deeply $file->{pod_lines}, [], 'no pod_lines';

my $binary = $self->file_content($file);
Expand All @@ -65,7 +63,6 @@ sub test_binary_data {
is $file->sloc, 4, 'sloc';
is $file->slop, 7, 'slop';

p $file->{pod_lines};
is_deeply $file->{pod_lines}, [ [ 5, 5 ], [ 22, 6 ], ], 'pod_lines';

my $binary = $self->file_content($file);
Expand Down
2 changes: 0 additions & 2 deletions t/release/local-lib.t
Expand Up @@ -2,7 +2,6 @@ use Test::More;
use strict;
use warnings;

use DDP;
use lib 't/lib';
use MetaCPAN::TestHelpers;

Expand Down Expand Up @@ -38,7 +37,6 @@ test_release(
is $file->sloc, 3, 'sloc';
is $file->slop, 2, 'slop';

p $file->{pod_lines};
is_deeply $file->{pod_lines}, [ [ 4, 3 ] ], 'pod_lines';

is $file->abstract, q[Legitimate module], 'abstract';
Expand Down
2 changes: 0 additions & 2 deletions t/release/oops-locallib.t
Expand Up @@ -2,7 +2,6 @@ use Test::More;
use strict;
use warnings;

use DDP;
use lib 't/lib';
use MetaCPAN::TestHelpers;

Expand Down Expand Up @@ -48,7 +47,6 @@ test_release(
is $file->sloc, 2, 'sloc';
is $file->slop, 2, 'slop';

p $file->{pod_lines};
is_deeply $file->{pod_lines}, [ [ 4, 3 ] ], 'pod_lines';

is $file->abstract, q[should not have been included],
Expand Down
2 changes: 0 additions & 2 deletions t/release/pod-with-data-token.t
Expand Up @@ -2,7 +2,6 @@ use Test::More;
use strict;
use warnings;

use DDP;
use lib 't/lib';
use MetaCPAN::TestHelpers;

Expand Down Expand Up @@ -38,7 +37,6 @@ sub test_content {
is $mod->sloc, 5, 'sloc';
is $mod->slop, 17, 'slop';

p $mod->{pod_lines};
is_deeply $mod->{pod_lines},
#<<<
[
Expand Down
2 changes: 0 additions & 2 deletions t/release/pod-with-generator.t
Expand Up @@ -2,7 +2,6 @@ use Test::More;
use strict;
use warnings;

use DDP;
use lib 't/lib';
use MetaCPAN::TestHelpers;

Expand Down Expand Up @@ -38,7 +37,6 @@ sub test_assoc_pod {
is $mod->sloc, 3, 'sloc';
is $mod->slop, 5, 'slop';

p $mod->{pod_lines};
is_deeply $mod->{pod_lines},
[ [ 5, 9 ], ],
'pod lines determined correctly';
Expand Down

0 comments on commit 555e7ac

Please sign in to comment.