diff --git a/xs/t/01_trianglemesh.t b/xs/t/01_trianglemesh.t index bd098b177..3315cea55 100644 --- a/xs/t/01_trianglemesh.t +++ b/xs/t/01_trianglemesh.t @@ -3,15 +3,19 @@ use strict; use warnings; +plan skip_all => 'temporarily disabled'; + +BEGIN { + use FindBin; + use lib "$FindBin::Bin/../../lib"; + use local::lib "$FindBin::Bin/../../local-lib"; +} + use Slic3r::XS; use Test::More tests => 1; use constant Z => 2; -ok 0 < 1, 'dummy'; - -__END__ - is Slic3r::TriangleMesh::hello_world(), 'Hello world!', 'hello world';