mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-10-03 23:36:28 +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 strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
|
|
||||||
use Slic3r::XS;
|
|
||||||
use Test::More;
|
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');
|
is(1, 1, 'Dummy test');
|
||||||
|
|
||||||
done_testing();
|
done_testing();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user