PrusaSlicer-NonPlainar/xs/t/20_print.t

17 lines
311 B
Perl
Raw Normal View History

2014-06-10 14:01:57 +00:00
#!/usr/bin/perl
use strict;
use warnings;
use Slic3r::XS;
2018-03-23 15:00:00 +00:00
use Test::More tests => 3;
2014-06-10 14:01:57 +00:00
{
2015-07-01 19:02:36 +00:00
my $print = Slic3r::Print->new;
2014-06-10 14:01:57 +00:00
isa_ok $print, 'Slic3r::Print';
2015-12-16 11:58:06 +00:00
isa_ok $print->config, 'Slic3r::Config::Static::Ref';
2014-06-10 14:01:57 +00:00
isa_ok $print->placeholder_parser, 'Slic3r::GCode::PlaceholderParser::Ref';
}
__END__