File: 01.node_constants.t

package info (click to toggle)
libtree-rb-perl 0.500004-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 212 kB
  • ctags: 148
  • sloc: perl: 1,883; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 322 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);
}