File: 01_ini.t

package info (click to toggle)
libtext-aligner-perl 0.16-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 208 kB
  • sloc: perl: 326; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 220 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# t/01_ini.t; just to load Text::Aligner by using it

$|++;
print "1..1
";
my($test) = 1;

# 1 load
use Text::Aligner;
my($loaded) = 1;
$loaded ? print "ok $test
" : print "not ok $test
";
$test++;

# end of t/01_ini.t