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
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2018-09-14 12:16:54 +0300
committerbubnikv <bubnikv@gmail.com>2018-09-14 12:16:54 +0300
commitbb7f504296c99fdc35197dedda85d38e6ef387f0 (patch)
tree4a354f0bb2a953dc186a2d339f386acf843dfe06 /t
parent2c9dc4dbbf86a9c6e0b85ac1c29233ff040a2299 (diff)
Removed "Slice to SVG" and "Quick Slice"
Diffstat (limited to 't')
-rw-r--r--t/svg.t37
1 files changed, 0 insertions, 37 deletions
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__