]> git.vpit.fr Git - perl/modules/Test-Valgrind.git/blob - t/01-import.t
Output what we got when t/30-bad.t fails
[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 use lib qw{blib/archpub};
9 require Test::Valgrind::Suppressions;
10
11 for (qw/supp_path VG_PATH/) {
12  eval { Test::Valgrind::Suppressions->import($_) };
13  ok(!$@, 'import ' . $_);
14 }