# vim: filetype=perl:ts=8:sw=4:sts=4:et use strict; use warnings; use lib 't/lib'; use Test::More; use TreeTest; TreeTest::Schema::Node->load_components(qw( Tree::AdjacencyList::Ordered )); TreeTest::Schema::Node->position_column( 'position' ); TreeTest::Schema::Node->parent_column( 'parent_id' ); my $tests = TreeTest::count_tests(); plan tests => $tests; TreeTest::run_tests(); 1;