]> git.vpit.fr Git - perl/modules/Sub-Prototype-Util.git/blob - t/01-import.t
30b94d2b55447e43fc8bb70c9e2be1f434f4dea7
[perl/modules/Sub-Prototype-Util.git] / t / 01-import.t
1 #!perl -T
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 2;
7
8 require Sub::Prototype::Util;
9
10 for (qw/flatten recall/) {
11  eval { Sub::Prototype::Util->import($_) };
12  ok(!$@, 'import ' . $_);
13 }