summaryrefslogtreecommitdiffstats
path: root/t/000-load.t
blob: 9b370a40766b5b5cdfd259350552969403abc3a5 (plain) (blame)
1
2
3
4
5
6
7
8
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';