summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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';
+