File: 10load.t

package info (click to toggle)
libmodule-versions-report-perl 1.06-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 92 kB
  • sloc: perl: 62; makefile: 2
file content (55 lines) | stat: -rw-r--r-- 1,038 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55

require 5;
use strict;
use Test;
my @modules;

BEGIN { 
  @modules =
  # Modules that have a $VERSION each, and have been in core for ages
  qw(
    Fcntl File::Basename File::Copy File::Path FileHandle FindBin
    Getopt::Long IO::File POSIX Text::Tabs
  );
  my $testcount = 2  +  3 * @modules;
  plan tests => $testcount;
  print "# ~ ~ ~ Expecting $testcount tests ~ ~ ~\n";
}

use Module::Versions::Report ();


ok 1;
foreach my $m (@modules) {
  print "# requiring $m...\n";
  eval "require $m;";
  die "Can't require $m: $@\nAborting" if $@;
  ok 1;
}

my $out = Module::Versions::Report::report();

{ my $o = $out; $o =~ s/^/# /mg; print "#\n#\n# Output:\n$o#\n"; }

foreach my $m (@modules) {
  my $mq = quotemeta($m);
  my $mv = quotemeta(do { no strict 'refs'; ${"$m\::VERSION"} || 'WHA' } );
  if($out =~ m/$mq/) {
    ok 1;
  } else {
    ok 0;
    print "# Can't find $mq in output\n";
  }

  if($out =~ m/$mv/) {
    ok 1;
  } else {
    ok 0;
    print "# Can't find $mv in output\n";
  }

}

print "# Byebye!\n";
ok 1;