File: 17-private_methods.t

package info (click to toggle)
libmodule-scandeps-perl 1.23-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 576 kB
  • ctags: 147
  • sloc: perl: 3,007; makefile: 8; ansic: 1
file content (11 lines) | stat: -rw-r--r-- 230 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl

use strict;
use warnings;

use Test::More tests => 1;
use Module::ScanDeps ();

my @deps = Module::ScanDeps::_get_preload('Event.pm');
ok(grep {$_ eq 'Event/idle.pm'} @deps) or diag(join(', ',@deps));