File: 00.versions.tx

package info (click to toggle)
libconfig-tiny-perl 2.30-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 208 kB
  • sloc: perl: 394; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 507 bytes parent folder | download | duplicates (16)
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
31
32
33
34
#/usr/bin/env perl

use strict;
use warnings;

# I tried 'require'-ing modules but that did not work.

use <: $module_name :>; # For the version #.

use Test::More;

<: $module_list_1 :>

# ----------------------

pass('All external modules loaded');

my(@modules) = qw
/
<: $module_list_2 :>
/;

diag "Testing <: $module_name :> V $<: $module_name :>::VERSION";

for my $module (@modules)
{
	no strict 'refs';

	my($ver) = ${$module . '::VERSION'} || 'N/A';

	diag "Using $module V $ver";
}

done_testing;