File: 00400_just_load_main_module.t

package info (click to toggle)
libtext-unidecode-perl 1.30-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,236 kB
  • sloc: perl: 3,878; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 566 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- coding:utf-8; mode:CPerl -*-
use 5.8.0; use strict; use warnings; use Test; use utf8;
print q[# //Time-stamp: "2016-11-10 23:42:30 MST"], "\n";
 # (this used to be called "00400_just_load_module.t"

BEGIN {plan tests => 3;}


print "# Let's just see if a bare 'use Text::Unidecode' works:\n";

ok 1;

use Text::Unidecode;

print "# We just loaded Unidecode version: ",
  $Text::Unidecode::VERSION || "?", "\n";

print "# It was last modified ",
   $Text::Unidecode::Last_Modified || die(),
   "\n",
;

ok "a", unidecode("a"); # sanity

print "# Bye:\n";
ok 1;