first commit

This commit is contained in:
douboer
2025-09-17 16:08:16 +08:00
parent 9395faa6b2
commit 3ff47c11d5
1318 changed files with 117477 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
#!/usr/bin/perl -w
use Test::More;
use strict;
my $tests;
BEGIN
{
$tests = 23;
plan tests => $tests;
chdir 't' if -d 't';
use lib '../lib';
};
SKIP:
{
skip( 'Test::Pod not installed on this system', $tests )
unless do
{
eval "use Test::Pod;";
$@ ? 0 : 1;
};
pod_file_ok( '../lib/Graph/Easy.pm' );
pod_file_ok( '../lib/Graph/Easy/Base.pm' );
pod_file_ok( '../lib/Graph/Easy/Layout.pm' );
pod_file_ok( '../lib/Graph/Easy/Layout/Chain.pm' );
pod_file_ok( '../lib/Graph/Easy/Layout/Scout.pm' );
pod_file_ok( '../lib/Graph/Easy/Layout/Path.pm' );
pod_file_ok( '../lib/Graph/Easy/Layout/Grid.pm' );
pod_file_ok( '../lib/Graph/Easy/Layout/Repair.pm' );
pod_file_ok( '../lib/Graph/Easy/Node.pm' );
pod_file_ok( '../lib/Graph/Easy/Edge.pm' );
pod_file_ok( '../lib/Graph/Easy/Group.pm' );
pod_file_ok( '../lib/Graph/Easy/Parser.pm' );
pod_file_ok( '../lib/Graph/Easy/Parser/Graphviz.pm' );
pod_file_ok( '../lib/Graph/Easy/Parser/VCG.pm' );
pod_file_ok( '../lib/Graph/Easy/Attributes.pm' );
pod_file_ok( '../lib/Graph/Easy/As_ascii.pm' );
pod_file_ok( '../lib/Graph/Easy/As_txt.pm' );
pod_file_ok( '../lib/Graph/Easy/As_graphviz.pm' );
pod_file_ok( '../lib/Graph/Easy/Edge/Cell.pm' );
pod_file_ok( '../lib/Graph/Easy/Node/Anon.pm' );
pod_file_ok( '../lib/Graph/Easy/Node/Cell.pm' );
pod_file_ok( '../lib/Graph/Easy/Group/Cell.pm' );
pod_file_ok( '../lib/Graph/Easy/Group/Anon.pm' );
}