• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/CPANInternal-140/Tree-Simple/t/

Lines Matching +refs:Tree +refs:insert

10 ## Exception Tests for Tree::Simple
13 use Tree::Simple;
16 my $TEST_SUB_TREE = Tree::Simple->new("test");
24 Tree::Simple->new("test", 0);
29 Tree::Simple->new("test", []);
34 Tree::Simple->new("test", $BAD_OBJECT);
39 my $tree = Tree::Simple->new(Tree::Simple->ROOT);
57 } qr/^Insufficient Arguments : no tree\(s\) to insert/, '... this should die';
62 } qr/^Insufficient Arguments \: Child must be a Tree\:\:Simple object/, '... this should die';
67 } qr/^Insufficient Arguments \: Child must be a Tree\:\:Simple object/, '... this should die';
73 } qr/^Insufficient Arguments \: Child must be a Tree\:\:Simple object/, '... this should die';
82 } qr/^Insufficient Arguments \: Cannot insert child without index/, '... this should die';
92 } qr/^Insufficient Arguments \: no tree\(s\) to insert/, '... this should die';
97 } qr/^Insufficient Arguments \: Child must be a Tree\:\:Simple object/, '... this should die';
102 } qr/^Insufficient Arguments \: Child must be a Tree\:\:Simple object/, '... this should die';
107 } qr/^Insufficient Arguments \: Child must be a Tree\:\:Simple object/, '... this should die';
113 } qr/^Insufficient Arguments \: Child must be a Tree\:\:Simple object/, '... this should die';
127 } qr/^Insufficient Arguments \: Cannot insert child without index/, '... this should die';
137 } qr/^Insufficient Arguments \: no tree\(s\) to insert/, '... this should die';
142 } qr/^Insufficient Arguments \: Child must be a Tree\:\:Simple object/, '... this should die';
147 } qr/^Insufficient Arguments \: Child must be a Tree\:\:Simple object/, '... this should die';
152 } qr/^Insufficient Arguments \: Child must be a Tree\:\:Simple object/, '... this should die';
158 } qr/^Insufficient Arguments \: Child must be a Tree\:\:Simple object/, '... this should die';
223 # attempting to insert sibling to root trees
226 } qr/^Insufficient Arguments \: cannot insert sibling\(s\) to a ROOT tree/, '... this should die';
228 # attempting to insert sibling to root trees
231 } qr/^Insufficient Arguments \: cannot insert sibling\(s\) to a ROOT tree/, '... this should die';
305 # passing non-Tree::Simple::Visitor arg to accept
315 # passing non-Tree::Simple::Visitor arg to accept
340 # is not a Tree::Simple object
354 ## end Exception Tests for Tree::Simple