Improvements to AdjacentList.pm:
[dbsrgits/DBIx-Class-Tree.git] / t / 11_adjacencylist_ordered.t
CommitLineData
c11aa533 1# vim: filetype=perl:ts=8:sw=4:sts=4:et
2use strict;
3use warnings;
4use lib 't/lib';
5
6use Test::More;
7use TreeTest;
8
9TreeTest::Schema::Node->load_components(qw(
10 Tree::AdjacencyList::Ordered
11));
12
13TreeTest::Schema::Node->position_column( 'position' );
14TreeTest::Schema::Node->parent_column( 'parent_id' );
15
16my $tests = TreeTest::count_tests();
17plan tests => $tests;
18TreeTest::run_tests();
19
201;