]> git.vpit.fr Git - perl/modules/Test-Valgrind.git/blob - t/12-good-run-exception.t
Update VPIT::TestHelpers to 15e8aee3
[perl/modules/Test-Valgrind.git] / t / 12-good-run-exception.t
1 #!perl
2
3 use strict;
4 use warnings;
5
6 use Test::More;
7
8 use lib 't/lib';
9
10 eval {
11  require Test::Valgrind;
12  Test::Valgrind->import(diag => 1);
13 };
14 if ($@) {
15  diag $@;
16  plan skip_all
17         => 'Test::Valgrind is required to test your distribution with valgrind';
18 }
19
20 die 'dummy run-time exception, should not cause the test to fail';