mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-10-04 13:26:34 +08:00
14 lines
127 B
Perl
14 lines
127 B
Perl
#!/usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use Slic3r::XS;
|
|
use Test::More;
|
|
|
|
is(1, 1, 'Dummy test');
|
|
|
|
done_testing();
|
|
|
|
__END__
|