Skip to content

Commit

Permalink
figured out trace() t/40 test issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Bertrand committed Jan 8, 2016
1 parent df7d2c4 commit 1978d88
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions t/40-dts_trace_checks.t
Expand Up @@ -4,13 +4,13 @@ use strict;

use Data::Dumper;
use Mock::Sub;
use Test::More tests => 84;
use Test::More tests => 83;

BEGIN {#1
use_ok( 'Devel::Examine::Subs::Preprocessor' );
use_ok( 'Devel::Examine::Subs::Engine' );
use_ok( 'Devel::Examine::Subs::Postprocessor' );
use_ok( 'Devel::Examine::Subs::Sub' );
#use_ok( 'Devel::Examine::Subs::Postprocessor' );
#use_ok( 'Devel::Examine::Subs::Preprocessor' );
#use_ok( 'Devel::Examine::Subs::Engine' );
#use_ok( 'Devel::Examine::Subs::Sub' );
use_ok( 'Devel::Examine::Subs' ) || print "Bail out!\n";
}

Expand Down Expand Up @@ -56,7 +56,7 @@ SKIP: {

my ($sub_count, $called_count);

for my $file (keys %{ $mods }){
for my $file (sort { length($a) <=> length($b) } keys %{ $mods }){

my $mock = Mock::Sub->new;
my $trace = $mock->mock($file . "::trace");
Expand Down

0 comments on commit 1978d88

Please sign in to comment.