mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-11-02 12:41:18 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			441 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			441 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
use Test::More tests => 1;
 | 
						|
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('raft_layers', 3);
 | 
						|
    $config->set('brim_width',  6);
 | 
						|
    my $print = Slic3r::Test::init_print('20mm_cube', config => $config);
 | 
						|
    ok Slic3r::Test::gcode($print), 'no conflict between raft/support and brim';
 | 
						|
}
 | 
						|
 | 
						|
__END__
 |