]> git.vpit.fr Git - perl/modules/VPIT-TestHelpers.git/blob - t/50-usleep.t
4ed179ef80cf9a08c81b67d0720a70d38e053e54
[perl/modules/VPIT-TestHelpers.git] / t / 50-usleep.t
1 #!perl -T
2
3 use strict;
4 use warnings;
5
6 use VPIT::TestHelpers 'usleep';
7
8 use Test::More tests => 2;
9
10 pass 'before usleep()';
11
12 usleep 100;
13
14 pass 'after usleep()';