Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t/slice.t
diff options
context:
space:
mode:
authorAlessandro Ranellucci <aar@cpan.org>2013-09-12 13:09:03 +0400
committerAlessandro Ranellucci <aar@cpan.org>2013-09-12 13:09:03 +0400
commit747fd25f6d084a0cf996e7bc7a3f7da6c69d22bc (patch)
tree1a5bf42de65cc067d59e55f536d220541d572d37 /t/slice.t
parentd660a1de0ae0301b31617e8b9c3b669505267904 (diff)
Fix threads, tests and require the most recent Moo version
Diffstat (limited to 't/slice.t')
-rw-r--r--t/slice.t8
1 files changed, 7 insertions, 1 deletions
diff --git a/t/slice.t b/t/slice.t
index 5b0eb024d..301ae164e 100644
--- a/t/slice.t
+++ b/t/slice.t
@@ -2,14 +2,20 @@ use Test::More;
use strict;
use warnings;
-plan tests => 16;
plan skip_all => 'temporarily disabled';
+plan tests => 16;
BEGIN {
use FindBin;
use lib "$FindBin::Bin/../lib";
}
+# temporarily disable compilation errors due to constant not being exported anymore
+sub Slic3r::TriangleMesh::I_B {}
+sub Slic3r::TriangleMesh::I_FACET_EDGE {}
+sub Slic3r::TriangleMesh::FE_BOTTOM {
+sub Slic3r::TriangleMesh::FE_TOP {}}
+
use Slic3r;
use Slic3r::Geometry qw(X Y Z A B);