File: list.t

package info (click to toggle)
libmath-matrixreal-perl 2.13-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,120 kB
  • sloc: perl: 2,837; makefile: 8
file content (21 lines) | stat: -rw-r--r-- 585 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use Test::More;
use File::Spec;
use lib File::Spec->catfile("..","lib");
use Math::MatrixReal;

do 'funcs.pl';

my $matrix = Math::MatrixReal->new_from_rows([ [1, 2], [3, 4] ]);
my @list = $matrix->as_list;

is scalar(@list), 4, "list contains 4 elements";
is_deeply \@list, [1, 2, 3, 4], "list contains all elements from initial rows";


$matrix = Math::MatrixReal->new_from_rows([ [1, 2, 3], [3, 4, 5] ]);
@list = $matrix->as_list;

is scalar(@list), 6, "list contains 6 elements";
is_deeply \@list, [1, 2, 3, 3, 4, 5], "list contains all elements from initial rows";

done_testing;