repo.or.cz
/
ltsps.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
More tests + GUI
[ltsps.git]
/
t
/
002_matlab_exists.t
blob
266ff11442700348d85f244cef336caeeb9d013d
1
use warnings;
2
use strict;
3
4
use Test::More qw(no_plan);
5
6
require 't/lib/Common.pm';
7
8
my $m = matlab_location();
9
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");
12
13