From bb7f504296c99fdc35197dedda85d38e6ef387f0 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Fri, 14 Sep 2018 11:16:54 +0200 Subject: Removed "Slice to SVG" and "Quick Slice" --- t/svg.t | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 t/svg.t (limited to 't') diff --git a/t/svg.t b/t/svg.t deleted file mode 100644 index 47d24ceb8..000000000 --- a/t/svg.t +++ /dev/null @@ -1,37 +0,0 @@ -use Test::More tests => 2; -use strict; -use warnings; - -BEGIN { - use FindBin; - use lib "$FindBin::Bin/../lib"; - use local::lib "$FindBin::Bin/../local-lib"; -} - -use Slic3r; -use Slic3r::Test; -use IO::Scalar; - -{ - my $print = Slic3r::Test::init_print('20mm_cube'); - eval { - my $fh = IO::Scalar->new(\my $gcode); - $print->print->export_svg(output_fh => $fh, quiet => 1); - $fh->close; - }; - die $@ if $@; - ok !$@, 'successful SVG export'; -} - -{ - my $print = Slic3r::Test::init_print('two_hollow_squares'); - eval { - my $fh = IO::Scalar->new(\my $gcode); - $print->print->export_svg(output_fh => $fh, quiet => 1); - $fh->close; - }; - die $@ if $@; - ok !$@, 'successful SVG export of object with two islands'; -} - -__END__ -- cgit v1.2.3