Devel-Graph

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

---
abstract: Turn Perl code into a graphical flowchart
author:
  - 'Tels <nospam-abuse@bloodgate.com>'
build_requires:
  Test::Differences: 0.47
  Test::More: 0.62
distribution_type: module
generated_by: Module::Install version 0.68
license: gpl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.3.html
  version: 1.3
name: Devel-Graph
no_index:
  directory:

Makefile.PL  view on Meta::CPAN

# Get most of the details from the primary module
all_from	'lib/Devel/Graph.pm';

requires	'Scalar::Util'		=> '1.19',
		'PPI'			=> '1.201',
		'Graph::Flowchart'	=> '0.10',
		'Graph::Easy'		=> '0.60',
		'perl'			=> '5.008001';

test_requires	'Test::More'		=> '0.62',
		'Test::Differences'	=> '0.47';

license		'gpl';

author		'Tels <nospam-abuse@bloodgate.com>';

# Do not index these
no_index	directory	=>	'examples';

# Auto-install all dependencies from CPAN
auto_install;

t/parse.t  view on Meta::CPAN

#!/usr/bin/perl -w

use Test::More;
use Test::Differences;
use strict;

# Parse test snippets from t/data/ and compare them to the stored output

BEGIN
   {
   chdir 't' if -d 't';
   use lib '../lib';
   use_ok ("Devel::Graph") or die($@);
   };



( run in 1.887 second using v1.01-cache-2.11-cpan-39bf76dae61 )