File: 01_load.t

package info (click to toggle)
libnetsds-util-perl 1.045-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 212 kB
  • sloc: perl: 1,031; sh: 6; makefile: 2
file content (30 lines) | stat: -rw-r--r-- 835 bytes parent folder | download | duplicates (6)
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
27
28
29
30
#!/usr/bin/env perl
#===============================================================================
#
#         FILE:  01_load.t
#
#  DESCRIPTION:  Check if all modules are loading without errors
#
#       AUTHOR:  Michael Bochkaryov (Rattler), <misha@rattler.kiev.ua>
#      COMPANY:  Net.Style
#      VERSION:  1.0
#===============================================================================

use strict;
use warnings;

use Test::More tests => 10;                      # last test to print

BEGIN {
	use_ok('NetSDS::Util');
	use_ok('NetSDS::Util::Convert');
	use_ok('NetSDS::Util::DateTime');
	use_ok('NetSDS::Util::File');
	use_ok('NetSDS::Util::FileImport');
	use_ok('NetSDS::Util::Misc');
	use_ok('NetSDS::Util::String');
	use_ok('NetSDS::Util::Struct');
	use_ok('NetSDS::Util::Translit');
	use_ok('NetSDS::Util::Types');
}