diff options
author | Florent Villard <warly@mandriva.com> | 2006-10-17 13:53:27 +0000 |
---|---|---|
committer | Florent Villard <warly@mandriva.com> | 2006-10-17 13:53:27 +0000 |
commit | 8a9d567022791fc58c2142701516a6c6f48e42d8 (patch) | |
tree | d235c43486f3cdd2200d99b18e9475709a971202 /t | |
parent | c4d64863270bc02078bb4d9a0d7e9fdadca51c0f (diff) | |
download | mga-youri-submit-8a9d567022791fc58c2142701516a6c6f48e42d8.tar mga-youri-submit-8a9d567022791fc58c2142701516a6c6f48e42d8.tar.gz mga-youri-submit-8a9d567022791fc58c2142701516a6c6f48e42d8.tar.bz2 mga-youri-submit-8a9d567022791fc58c2142701516a6c6f48e42d8.tar.xz mga-youri-submit-8a9d567022791fc58c2142701516a6c6f48e42d8.zip |
merge with upstream
Diffstat (limited to 't')
-rwxr-xr-x | t/00distribution.t | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/t/00distribution.t b/t/00distribution.t new file mode 100755 index 0000000..8a4b2c4 --- /dev/null +++ b/t/00distribution.t @@ -0,0 +1,15 @@ +#!/usr/bin/perl +# $Id$ + +use Test::More; + +BEGIN { + eval { + require Test::Distribution; + }; + if($@) { + plan skip_all => 'Test::Distribution not installed'; + } else { + import Test::Distribution only => [ qw/use pod description/ ]; + } +} |