From: Vincent Pit Date: Mon, 5 Jan 2009 10:33:21 +0000 (+0100) Subject: Also add localize_delete() to t/01-import.t X-Git-Tag: v0.04~23 X-Git-Url: http://git.vpit.fr/?a=commitdiff_plain;h=50d757921d9013018ad16813fa5264a5791c6ad3;hp=02798a015a7fae0ff3d924b3270def3996e4210b;p=perl%2Fmodules%2FScope-Upper.git Also add localize_delete() to t/01-import.t --- diff --git a/t/01-import.t b/t/01-import.t index ef8937c..862d662 100644 --- a/t/01-import.t +++ b/t/01-import.t @@ -3,11 +3,11 @@ use strict; use warnings; -use Test::More tests => 9; +use Test::More tests => 10; require Scope::Upper; -for (qw/reap localize localize_elem TOP CURRENT UP DOWN SUB EVAL/) { +for (qw/reap localize localize_elem localize_delete TOP CURRENT UP DOWN SUB EVAL/) { eval { Scope::Upper->import($_) }; is($@, '', 'import ' . $_); }