File: 05then-else-xs.t

package info (click to toggle)
libfuture-perl 0.51-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 676 kB
  • sloc: perl: 4,625; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 171 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl

use v5.14;
use warnings;

eval { require Future::XS } or do {
   print "1..0 # SKIP No Future::XS\n";
   exit;
};

do "./t/05then-else.pl";
die $@ if $@;