mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-31 04:31:15 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			507 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			507 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| use Test::More tests => 2;
 | |
| use strict;
 | |
| use warnings;
 | |
| 
 | |
| BEGIN {
 | |
|     use FindBin;
 | |
|     use lib "$FindBin::Bin/../lib";
 | |
| }
 | |
| 
 | |
| use Slic3r;
 | |
| 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';
 | |
| }
 | |
| 
 | |
| __END__
 | 
