testcases: use Test::More is_deeply, don't depend on Test::Deep

This commit is contained in:
Maik Fischer
2011-11-22 02:21:47 +01:00
committed by Michael Stapelberg
parent 3a9d94bba4
commit 8d83697cc2
9 changed files with 17 additions and 20 deletions

View File

@ -61,15 +61,14 @@ sub import {
my $class = shift;
my $pkg = caller;
my $test_most_args = @_ ? "qw(@_)" : "";
my $test_more_args = @_ ? "qw(@_)" : "";
local $@;
eval << "__";
package $pkg;
use Test::Most $test_most_args;
use Test::More $test_more_args;
use Data::Dumper;
use AnyEvent::I3;
use Time::HiRes qw(sleep);
use Test::Deep qw(eq_deeply cmp_deeply);
__
$tester->bail_out("$@") if $@;
feature->import(":5.10");