From b8993622902a36b24520c0ed5396dde7bc93bfe6 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 4 May 2020 17:07:26 +0200 Subject: do not reinvent Test::More... --- t/00basic.t | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 't') diff --git a/t/00basic.t b/t/00basic.t index 94803cc..f7ddc81 100644 --- a/t/00basic.t +++ b/t/00basic.t @@ -1,5 +1,3 @@ -use Test; -BEGIN { plan tests => 1 } -END { ok($loaded) } -use Hal::Cdroms; -$loaded++; +use Test::More; +plan tests => 1; +use_ok('Hal::Cdroms'); -- cgit v1.2.1