mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-05 18:50:45 +08:00
add test framework for easy calling from command line
This commit is contained in:
parent
366c25888c
commit
929da2e6d8
@ -3,9 +3,18 @@
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use Slic3r::XS;
|
||||
use Test::More;
|
||||
|
||||
#plan skip_all => 'temporarily disabled';
|
||||
|
||||
BEGIN {
|
||||
use FindBin;
|
||||
use lib "$FindBin::Bin/../../lib";
|
||||
use local::lib "$FindBin::Bin/../../local-lib";
|
||||
}
|
||||
|
||||
use Slic3r::XS;
|
||||
|
||||
is(1, 1, 'Dummy test');
|
||||
|
||||
done_testing();
|
||||
|
Loading…
x
Reference in New Issue
Block a user