File: 01.node_constants.t

package info (click to toggle)
libtree-rb-perl 0.500006-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 204 kB
  • sloc: perl: 635; makefile: 525
file content (18 lines) | stat: -rw-r--r-- 305 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use Test::More tests => 9;

use_ok( 'Tree::RB::Node::_Constants' );
diag( "Testing Tree::RB::Node::_Constants $Tree::RB::Node::_Constants::VERSION" );

foreach my $m (qw[
    _PARENT
    _LEFT
    _RIGHT
    _COLOR
    _KEY
    _VAL
    BLACK
    RED
  ])
{
    can_ok('Tree::RB::Node::_Constants', $m);
}