Fix threads, tests and require the most recent Moo version

This commit is contained in:
Alessandro Ranellucci 2013-09-12 11:09:03 +02:00
parent d660a1de0a
commit 747fd25f6d
7 changed files with 31 additions and 21 deletions

View file

@ -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);