Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

test::checkdeps(3) [mojave man page]

Test::CheckDeps(3)					User Contributed Perl Documentation					Test::CheckDeps(3)

NAME
Test::CheckDeps - Check for presence of dependencies VERSION
version 0.010 SYNOPSIS
use Test::More 0.94; use Test::CheckDeps 0.007; check_dependencies(); done_testing(); DESCRIPTION
This module adds a test that assures all dependencies have been installed properly. If requested, it can bail out all testing on error. FUNCTIONS
check_dependencies( [ level ]) Check dependencies based on a local MYMETA or META file. The "level" argument is optional. It can be one of: o requires All 'requires' dependencies are checked (the configure, build, test and runtime phases are always checked, and the develop phase is also tested when AUTHOR_TESTING is set) o classic As "requires", but 'conflicts' dependencies are also checked. o recommends As "classic", but 'recommends' dependencies are also checked, as TODO tests. o suggests As "recommends", but 'suggests' dependencies are also checked, as TODO tests. When not provided, "level" defaults to "classic" ('requires' and 'conflicts' dependencies are checked). check_dependencies_opts($meta, $phase, $type) Check dependencies in CPAN::Meta object $meta for phase $phase (configure, build, test, runtime, develop) and type $type(requires, recommends, suggests, conflicts). You probably just want to use "check_dependencies" though. AUTHOR
Leon Timmermans <leont@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Leon Timmermans. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.18.2 2013-10-09 Test::CheckDeps(3)

Check Out this Related Man Page

CPANGRAPH(1p)						User Contributed Perl Documentation					     CPANGRAPH(1p)

NAME
cpangraph - Generate dependency chain graphs for CPAN modules VERSION
Version 0.12 SYNOPSIS
cpangraph [options] <file> Options: --help display a brief help message --perl=VERSION filter those available in Perl core --phase=PHASE filter those needed for a phase (e.g., build) --rankdir controls the GraphViz 'rankdir' variable --reverse graph reverse dependencies (dependents) --verbose display additional debugging information OPTIONS
--help Prints a brief help message to the standard output and exits. --perl=VERSION This displays dependencies which have been available in Perl core since the given VERSION. It does not currently know if a module has been removed from core, but this is an unlikely occurrence. Specify Perl versions in the form: 5.008008 # for versions >= 5.8.8 5.010 # for versions >= 5.10 --phase=PHASE This displays dependencies which are needed for a given module's install or runtime PHASE. Available phases are: o runtime: required whenever the module is used o build: required to build the module o configure: these are required while preparing the module for build --rankdir In GraphViz, the 'rankdir' attribute controls the direction that the nodes are linked together. If set, the graph will use left -> right linking of nodes rather than the default up-down linking. --reverse Create a graph of the reverse dependencies of a package (the packages which depend on it, or dependent packages). --verbose Display extra output useful during debugging. DESCRIPTION
This script will use the CPAN Database to build a graph of a package's dependencies or reverse dependencies (dependent packages). AUTHOR
Adam Kennedy <adamk@cpan.org> SUPPORT
For support details, please look at "perldoc CPANDB" and use the corresponding support methods. LICENSE
This has the same copyright and licensing terms as CPANDB. perl v5.14.2 2011-11-25 CPANGRAPH(1p)
Man Page