]> git.vpit.fr Git - perl/modules/Test-Valgrind.git/blobdiff - t/21-good-block.t
Generate suppressions with eval BLOCK, and test it too
[perl/modules/Test-Valgrind.git] / t / 21-good-block.t
diff --git a/t/21-good-block.t b/t/21-good-block.t
new file mode 100644 (file)
index 0000000..7eea4b5
--- /dev/null
@@ -0,0 +1,11 @@
+#!perl
+
+use strict;
+use warnings;
+
+use Test::More;
+use lib qw{blib/archpub};
+eval { use Test::Valgrind };
+plan skip_all => 'Test::Valgrind is required to run test your distribution with valgrind' if $@;
+
+1;