summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordoy <doy@tozt.net>2008-12-15 03:59:11 -0500
committerdoy <doy@tozt.net>2008-12-15 03:59:11 -0500
commitc448f97a66d931e1babbeafc69096ca12c826e47 (patch)
treecc0c3580e39d697e0ed269ed265cdcccb26c2f2e
parentb758557ca8b972ca8c559f5150bb2769219aa796 (diff)
downloadgraph-implicit-c448f97a66d931e1babbeafc69096ca12c826e47.tar.gz
graph-implicit-c448f97a66d931e1babbeafc69096ca12c826e47.zip
start adding tests
-rw-r--r--t/000-load.t9
1 files changed, 9 insertions, 0 deletions
diff --git a/t/000-load.t b/t/000-load.t
new file mode 100644
index 0000000..9b370a4
--- /dev/null
+++ b/t/000-load.t
@@ -0,0 +1,9 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More tests => 2;
+
+use_ok 'Graph::Implicit';
+my $graph = Graph::Implicit->new(sub {});
+isa_ok $graph, 'Graph::Implicit';
+