From 08e8bd1b7d884a6e2aa6216e478083cf0b73c91b Mon Sep 17 00:00:00 2001 From: Michael Kirsch Date: Sun, 7 Jul 2019 16:06:46 +0200 Subject: [PATCH] update skipping code --- xs/t/01_trianglemesh.t | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) 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';