Astro-Sunrise

 view release on metacpan or  search on metacpan

t/11fatal.t  view on Meta::CPAN

#     along with this program; if not, write to the Free Software Foundation,
#     Inc., <https://www.fsf.org/>.
#
use strict;
use warnings;
use Test::More;

my $datetime_ok;

BEGIN {
  eval "use Test::Fatal;";
  if ($@) {
    plan skip_all => "Test::Fatal needed";
    exit;
  }
  eval "use DateTime;";
  if ($@) {
    $datetime_ok = 0;
  }
  else {
    $datetime_ok = 1;
  }
}



( run in 1.981 second using v1.01-cache-2.11-cpan-54e63673c56 )