More tests + GUI
[ltsps.git] / t / 002_matlab_exists.t
blob266ff11442700348d85f244cef336caeeb9d013d
1 use warnings;
2 use strict;
4 use Test::More qw(no_plan);
6 require 't/lib/Common.pm';
8 my $m = matlab_location();
10 ok(-e $m or die("couldn't find matlab"), "matlab exists");
11 ok(-x $m or die("matlab isn't executable"), "matlab is executable");