]> git.vpit.fr Git - perl/modules/Test-Valgrind.git/blob - t/01-import.t
cb0938f7ae33efa1049fbf0e3685549c913566c8
[perl/modules/Test-Valgrind.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 Test::Valgrind::Suppressions;
9
10 for (qw/supp_path VG_PATH/) {
11  eval { Test::Valgrind::Suppressions->import($_) };
12  ok(!$@, 'import ' . $_);
13 }