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:
authorAlessandro Ranellucci <aar@cpan.org>2013-07-26 12:17:21 +0400
committerAlessandro Ranellucci <aar@cpan.org>2013-07-26 12:32:44 +0400
commitfe94e31bda044cd097bf8ff43773fdbf37411a74 (patch)
tree08caec32c1b6c5588d0be93ab1ae375ca12a2bca
parent37bf0fa53ba19f36db3208881aabb16faf62ce36 (diff)
Remove t/freeze.t. #1352
-rw-r--r--t/freeze.t30
1 files changed, 0 insertions, 30 deletions
diff --git a/t/freeze.t b/t/freeze.t
deleted file mode 100644
index 07fd020d2..000000000
--- a/t/freeze.t
+++ /dev/null
@@ -1,30 +0,0 @@
-use Test::More tests => 1;
-use strict;
-use warnings;
-
-BEGIN {
- use FindBin;
- use lib "$FindBin::Bin/../lib";
-}
-
-use Slic3r;
-use Slic3r::Test;
-use Storable qw(nstore retrieve);
-use Time::HiRes qw(gettimeofday tv_interval);
-
-{
- my $t0 = [gettimeofday];
- my $print = Slic3r::Test::init_print('20mm_cube', scale => 2);
- my $gcode = Slic3r::Test::gcode($print);
- ###diag sprintf 'Slicing took %s seconds', tv_interval($t0);
-
- my $t1 = [gettimeofday];
- nstore $print, 'print.dat';
- $print = retrieve 'print.dat';
- unlink 'print.dat';
- ###diag sprintf 'Freezing and retrieving took %s seconds', tv_interval($t1);
-
- isa_ok $print, 'Slic3r::Print', 'restored Print object';
-}
-
-__END__