File: 10_edge_attributes.t

package info (click to toggle)
libgraph-nauty-perl 0.5.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 160 kB
  • sloc: perl: 202; makefile: 3
file content (26 lines) | stat: -rw-r--r-- 586 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use strict;
use warnings;
use Graph::Nauty;
use Graph::Undirected;
use Test::More tests => 2;

my $g = Graph::Undirected->new;

my $n = 5;
for (0..$n-1) {
    $g->add_edge( $_, ($_ - 1) % $n );
    $g->add_edge( $_, ($_ + 1) % $n );
}

my $nauty_graph;

$g->set_edge_attribute( 0, 1, 'color', 'green' );
$g->set_edge_attribute( 1, 2, 'color', 'orange' );

( $nauty_graph ) = Graph::Nauty::_nauty_graph( $g );
is( scalar $nauty_graph->{nv}, 7 );

$g->set_edge_attribute( 1, 2, 'color', 'green' );

( $nauty_graph ) = Graph::Nauty::_nauty_graph( $g );
is( scalar $nauty_graph->{nv}, 7 );