From a8b31060a0fe668b36d0dceb83c2b1a7621ab988 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 3 Apr 2014 10:27:04 -0400 Subject: stop using use_ok --- t/dist.t | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 't/dist.t') diff --git a/t/dist.t b/t/dist.t index c3a7823..493de44 100644 --- a/t/dist.t +++ b/t/dist.t @@ -6,7 +6,7 @@ use Test::Fatal; use lib 't/lib/dist'; { - use_ok('Foo::Conflicts::Good'); + require Foo::Conflicts::Good; is_deeply( [ Foo::Conflicts::Good->calculate_conflicts ], [], @@ -21,7 +21,7 @@ use lib 't/lib/dist'; } { - use_ok('Foo::Conflicts::Bad'); + require Foo::Conflicts::Bad; is_deeply( [ Foo::Conflicts::Bad->calculate_conflicts ], @@ -40,7 +40,7 @@ use lib 't/lib/dist'; } { - use_ok('Bar::Conflicts::Good'); + require Bar::Conflicts::Good; is_deeply( [ Bar::Conflicts::Good->calculate_conflicts ], [], @@ -55,7 +55,7 @@ use lib 't/lib/dist'; } { - use_ok('Bar::Conflicts::Bad'); + require Bar::Conflicts::Bad; is_deeply( [ Bar::Conflicts::Bad->calculate_conflicts ], -- cgit v1.2.3-54-g00ecf