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
diff options
context:
space:
mode:
Diffstat (limited to 'xs/t/21_gcode.t')
-rw-r--r--xs/t/21_gcode.t17
1 files changed, 0 insertions, 17 deletions
diff --git a/xs/t/21_gcode.t b/xs/t/21_gcode.t
deleted file mode 100644
index 307de6421..000000000
--- a/xs/t/21_gcode.t
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/perl
-
-use strict;
-use warnings;
-
-use Slic3r::XS;
-use Test::More tests => 2;
-
-{
- my $gcodegen = Slic3r::GCode->new;
- $gcodegen->set_origin(Slic3r::Pointf->new(10,0));
- is_deeply $gcodegen->origin->pp, [10,0], 'set_origin';
- $gcodegen->origin->translate(5,5);
- is_deeply $gcodegen->origin->pp, [15,5], 'origin returns reference to point';
-}
-
-__END__