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

20_print.t « t « xs - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e535cdd8cba521c5e701a54b1730663ecfd41df0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/perl

use strict;
use warnings;

use Slic3r::XS;
use Test::More tests => 5;

{
    my $print = Slic3r::Print->new;
    isa_ok $print, 'Slic3r::Print';
    isa_ok $print->config, 'Slic3r::Config::Static::Ref';
    isa_ok $print->default_object_config, 'Slic3r::Config::Static::Ref';
    isa_ok $print->default_region_config, 'Slic3r::Config::Static::Ref';
    isa_ok $print->placeholder_parser, 'Slic3r::GCode::PlaceholderParser::Ref';
}

__END__