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/conflicts.t | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 't/conflicts.t') diff --git a/t/conflicts.t b/t/conflicts.t index 7c5dfb2..f6f830c 100644 --- a/t/conflicts.t +++ b/t/conflicts.t @@ -7,7 +7,7 @@ use Test::Fatal; use lib 't/lib/conflicts'; { - use_ok('Foo::Conflicts::Good'); + require Foo::Conflicts::Good; is_deeply( [ Foo::Conflicts::Good->calculate_conflicts ], [], @@ -21,7 +21,7 @@ use lib 't/lib/conflicts'; } { - use_ok('Foo::Conflicts::Bad'); + require Foo::Conflicts::Bad; is_deeply( [ Foo::Conflicts::Bad->calculate_conflicts ], @@ -39,7 +39,7 @@ use lib 't/lib/conflicts'; } { - use_ok('Bar::Conflicts::Good'); + require Bar::Conflicts::Good; is_deeply( [ Bar::Conflicts::Good->calculate_conflicts ], [], @@ -53,7 +53,7 @@ use lib 't/lib/conflicts'; } { - use_ok('Bar::Conflicts::Bad'); + require Bar::Conflicts::Bad; is_deeply( [ Bar::Conflicts::Bad->calculate_conflicts ], @@ -73,7 +73,7 @@ use lib 't/lib/conflicts'; { # conflicting module is utterly broken - use_ok('Foo::Conflicts::Broken'); + require Foo::Conflicts::Broken; my @conflicts; my $warning = ''; -- cgit v1.2.3-54-g00ecf