Skip to content

Commit

Permalink
Remove dependency on Moose::Autobox for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Jan 21, 2015
1 parent 103f533 commit 6bcb084
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Revision history for Perl extension {{$dist->name}}

{{$NEXT}}
- Add the file in one shot, rather than adding then munging
- Remove dependency on Moose::Autobox for tests [kentnl; GH #4]

2.000005 2013-08-03
- Don't shoot ourselves in the foot in the tests [kentnl; GH #3]
Expand Down
3 changes: 1 addition & 2 deletions t/deprecated.t
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ use Test::More 0.96 tests => 2;
use Test::Output;
use autodie;
use Test::DZil;
use Moose::Autobox;

my $tzil;

Expand All @@ -24,7 +23,7 @@ stderr_like(

$tzil->build;

my @xtests = map $_->name =~ m{^xt/} ? $_->name : (), $tzil->files->flatten;
my @xtests = map $_->name =~ m{^xt/} ? $_->name : (), @{ $tzil->files };
ok(
(grep { $_ eq 'xt/release/portability.t' } @xtests),
'portability.t exists'
Expand Down

0 comments on commit 6bcb084

Please sign in to comment.