]> git.vpit.fr Git - perl/modules/Sub-Nary.git/blob - t/02-can.t
Update VPIT::TestHelpers to 15e8aee3
[perl/modules/Sub-Nary.git] / t / 02-can.t
1 #!perl -T
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 3;
7
8 require Sub::Nary;
9
10 for (qw<new nary flush>) {
11  ok(Sub::Nary->can($_), 'SN can ' . $_);
12 }