Welcome to mirror list, hosted at ThFree Co, Russian Federation.

svg.t « t - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t/svg.t
blob: 6092efe248c88041f21a750b7a83b6e923160d48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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;

{
    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__