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
path: root/t
diff options
context:
space:
mode:
authorAlessandro Ranellucci <aar@cpan.org>2015-07-01 21:15:52 +0300
committerAlessandro Ranellucci <aar@cpan.org>2015-07-01 21:15:52 +0300
commit76b2e8855177c3e7dedd25a6bf2977e4adbb177c (patch)
tree26d93a6597cf1c32e2aa572bf60647004310665d /t
parentbf9cd1b8e6384c957f25ebfaedeb11bc9430b0a4 (diff)
Removed setenv() test as we can't test environment variables in Perl since they are now set in XS
Diffstat (limited to 't')
-rw-r--r--t/config.t9
1 files changed, 1 insertions, 8 deletions
diff --git a/t/config.t b/t/config.t
index 7950dbb18..7f85dae84 100644
--- a/t/config.t
+++ b/t/config.t
@@ -1,4 +1,4 @@
-use Test::More tests => 2;
+use Test::More tests => 1;
use strict;
use warnings;
@@ -12,13 +12,6 @@ use Slic3r::Test;
{
my $config = Slic3r::Config->new_from_defaults;
- $config->set('layer_height', 0.123);
- $config->setenv;
- is $ENV{SLIC3R_LAYER_HEIGHT}, '0.123', 'setenv';
-}
-
-{
- my $config = Slic3r::Config->new_from_defaults;
$config->set('perimeter_extrusion_width', '250%');
ok $config->validate, 'percent extrusion width is validated';
}