SMS-OVH

SMS::OVH - Send SMS using OVH API (https://api.ovh.com/)
git clone https://git.e1e0.net/SMS-OVH.git
Log | Files | Refs | README

pod.t (350B)


      1 #!perl -T
      2 use 5.006;
      3 use strict;
      4 use warnings;
      5 use Test::More;
      6 
      7 unless ( $ENV{RELEASE_TESTING} ) {
      8     plan( skip_all => "Author tests not required for installation" );
      9 }
     10 
     11 # Ensure a recent version of Test::Pod
     12 my $min_tp = 1.22;
     13 eval "use Test::Pod $min_tp";
     14 plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
     15 
     16 all_pod_files_ok();