4 use Test::More qw(no_plan);
8 require 't/lib/Common.pm';
12 my $d = Digest::MD5->new;
15 my $cmd = "[1 1 1; 2 2 2; 3 3 3]";
20 $erm = "output didn't match what I expected";
21 $tm = "received the expected output";
23 my $expected_fn = "t/expected_output/003_basic_matlab_io";
25 open(my $expected, "<", $expected_fn);
26 open(my $got, "<", "t/matlab_output/output");
28 $d->addfile($expected);
29 my $d_expected = $d->hexdigest;
32 my $d_got = $d->hexdigest;
34 print Dumper($d_expected);
37 ok(($d_expected eq $d_got or die($erm)),$tm);