File: 001-load.t

package info (click to toggle)
libtext-capitalize-perl 1.5-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 284 kB
  • sloc: perl: 297; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 349 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl 001-load.t'

#########################

use FindBin qw($Bin);
use lib ("$Bin/../lib",  "$Bin/lib");
use Test::More tests => 2;
use_ok('Text::Capitalize');
use_ok("Test::Locale::Utils");


#########################