Skip to content

Commit

Permalink
Build results of 070839d (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Mar 4, 2017
1 parent e80e694 commit 02f777a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Release history for CPAN-Changes-Group-Dependencies-Stats

0.002008 2017-03-04T08:17:48Z 6f3348d
0.002008 2017-03-04T08:25:23Z 070839d
[Bugfix]
- Avoid test failures on 5.26 w/ -Ddefault_inc_excludes_dot
- Closes https://github.com/kentnl/CPAN-Changes-Group-Dependencies-Stats/issues/2
Expand Down
4 changes: 1 addition & 3 deletions t/attach.t
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ EOF
skip_all => sprintf "Serialization scheme of CPAN::Changes %s is different to that of %s",
$CPAN::Changes::VERSION, $sample_version;
}
plan tests => 4;
local $TODO;
if ( not eval "CPAN::Changes->VERSION(q[0.500]); 1" ) {
$TODO = "Legacy serialization scheme";
Expand Down Expand Up @@ -78,6 +79,3 @@ eq_or_diff $string, <<'EOF', 'Serialize as expected';
[Dependencies::Stats]
- runtime: +1
EOF

done_testing;

4 changes: 1 addition & 3 deletions t/basic.t
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use strict;
use warnings;

use Test::More;
use Test::More tests => 53;
use Test::Differences;

# ABSTRACT: Basic comparison
Expand Down Expand Up @@ -159,5 +159,3 @@ for my $phase (qw ( runtime build configure test develop )) {
'Mulitmix';

}
done_testing;

4 changes: 1 addition & 3 deletions t/complex.t
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use strict;
use warnings;

use Test::More;
use Test::More tests => 1;
use Test::Differences;

# ABSTRACT: Complex comparison
Expand All @@ -19,5 +19,3 @@ use CPAN::Changes::Group::Dependencies::Stats;

eq_or_diff $diff->changes, ["runtime: ~1"], 'Complex deps changed.';
}
done_testing;

5 changes: 1 addition & 4 deletions t/fails.t
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use strict;
use warnings;

use Test::More;
use Test::More tests => 4;

# ABSTRACT: Things that fail
use CPAN::Changes::Group::Dependencies::Stats;
Expand Down Expand Up @@ -59,6 +59,3 @@ is_fail 'Missing prereq old' => sub {
isnt_fail 'Missing prereq old' => sub {
CPAN::Changes::Group::Dependencies::Stats->new( new_prereqs => {}, old_prereqs => {} )->changes;
};

done_testing;

0 comments on commit 02f777a

Please sign in to comment.