diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-03-01 17:20:29 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-03-01 17:20:48 +0100 |
commit | 47f72633b8f571170718e2123c0e9066b4063d84 (patch) | |
tree | e8f0a3c9cedc34002fe41c0e39795673663ad84b | |
parent | 01ae82771123781aef366d782a12a1fca2f0dac1 (diff) |
Add SYNOPSIS test.
-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(); |