]> git.vpit.fr Git - perl/modules/Test-Valgrind.git/blob - t/10-good.t
Switch to qw<>
[perl/modules/Test-Valgrind.git] / t / 10-good.t
1 #!perl
2
3 use strict;
4 use warnings;
5
6 use Test::More;
7
8 use lib 't/lib';
9 eval 'use Test::Valgrind';
10 if ($@) {
11  diag $@;
12  plan skip_all => 'Test::Valgrind is required to run test your distribution with valgrind';
13 }
14
15 {
16  package Test::Valgrind::Test::Fake;
17
18  use base qw<strict>;
19 }
20
21 plan tests => 1;
22 fail 'should not be seen';