diff options
Diffstat (limited to 't')
-rwxr-xr-x | t/05-synopsis.t | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/t/05-synopsis.t b/t/05-synopsis.t new file mode 100755 index 0000000..754072a --- /dev/null +++ b/t/05-synopsis.t @@ -0,0 +1,8 @@ +#!/usr/bin/env perl +use strict; +use warnings; + +use Test::More; +eval "use Test::Synopsis"; +plan skip_all => "Test::Synopsis required for testing" if $@; +all_synopsis_ok(); |