Skip to content

Commit

Permalink
remove Test::use::ok
Browse files Browse the repository at this point in the history
  • Loading branch information
arcanez committed Jan 25, 2012
1 parent 19ebfcc commit de938bf
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 12 deletions.
10 changes: 5 additions & 5 deletions t/01_load.t
Expand Up @@ -5,9 +5,9 @@ use warnings;


use Test::More 'no_plan'; use Test::More 'no_plan';


use ok 'POE::Component::Supervisor::Supervised'; use_ok 'POE::Component::Supervisor::Supervised';
use ok 'POE::Component::Supervisor::Handle'; use_ok 'POE::Component::Supervisor::Handle';
use ok 'POE::Component::Supervisor'; use_ok 'POE::Component::Supervisor';


use ok 'POE::Component::Supervisor::Handle::Proc'; use_ok 'POE::Component::Supervisor::Handle::Proc';
use ok 'POE::Component::Supervisor::Supervised::Proc'; use_ok 'POE::Component::Supervisor::Supervised::Proc';
6 changes: 4 additions & 2 deletions t/02_basic.t
Expand Up @@ -9,8 +9,10 @@ use Log::Dispatch::Config::TestLog;


use Test::More 'no_plan'; use Test::More 'no_plan';


use ok 'POE::Component::Supervisor'; BEGIN {
use ok 'POE::Component::Supervisor::Supervised::Proc'; use_ok 'POE::Component::Supervisor';
use_ok 'POE::Component::Supervisor::Supervised::Proc';
}


use POE; use POE;


Expand Down
6 changes: 4 additions & 2 deletions t/03_stubborn.t
Expand Up @@ -9,8 +9,10 @@ use Log::Dispatch::Config::TestLog;


use Test::More 'no_plan'; use Test::More 'no_plan';


use ok 'POE::Component::Supervisor'; BEGIN {
use ok 'POE::Component::Supervisor::Supervised::Proc'; use_ok 'POE::Component::Supervisor';
use_ok 'POE::Component::Supervisor::Supervised::Proc';
}


use POE; use POE;


Expand Down
8 changes: 5 additions & 3 deletions t/04_global_restart_policy.t
Expand Up @@ -9,9 +9,11 @@ use Log::Dispatch::Config::TestLog;


use Test::More 'no_plan'; use Test::More 'no_plan';


use ok 'POE::Component::Supervisor'; BEGIN {
use ok 'POE::Component::Supervisor::Supervised::Proc'; use_ok 'POE::Component::Supervisor';
use ok 'POE::Component::Supervisor::Supervised::Session'; use_ok 'POE::Component::Supervisor::Supervised::Proc';
use_ok 'POE::Component::Supervisor::Supervised::Session';
}


use POE; use POE;


Expand Down

0 comments on commit de938bf

Please sign in to comment.