File: 00-load.t

package info (click to toggle)
liburi-encode-perl 1.1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 128 kB
  • sloc: perl: 204; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 319 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
#!perl

####################
# LOAD CORE MODULES
####################
use strict;
use warnings FATAL => 'all';
use Test::More;

# Autoflush ON
local $| = 1;

# Test _use_
use_ok('URI::Encode') || BAIL_OUT('Failed to load URI::Encode');
diag("Testing URI::Encode $URI::Encode::VERSION");

# Done
done_testing();
exit 0;