]> git.vpit.fr Git - perl/modules/Scope-Upper.git/blob - t/01-import.t
Introduce SCOPE()
[perl/modules/Scope-Upper.git] / t / 01-import.t
1 #!perl -T
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 13;
7
8 require Scope::Upper;
9
10 for (qw/reap localize localize_elem localize_delete unwind want_at TOP HERE UP SUB EVAL SCOPE CALLER/) {
11  eval { Scope::Upper->import($_) };
12  is($@, '', 'import ' . $_);
13 }