From: Karen Etheridge Date: Wed, 18 Sep 2013 16:30:03 +0000 (-0700) Subject: we can still save a dep, but gotta have a plan... X-Git-Tag: v1.000004~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FSafe-Isa.git;a=commitdiff_plain;h=df07f4f55c27c84538ee8d2b44799cafa92f4a02 we can still save a dep, but gotta have a plan... --- diff --git a/t/safe_isa.t b/t/safe_isa.t index 5867bc5..f9721e1 100644 --- a/t/safe_isa.t +++ b/t/safe_isa.t @@ -1,6 +1,6 @@ use strict; use warnings FATAL => 'all'; -use Test::More qw(no_plan); +use Test::More tests => 15; { package Foo; sub new { bless({}, $_[0]) } } { package Bar; our @ISA = qw(Foo); sub bar { 1 } }