Coverage for biobb_dna/test/unitests/test_curvesplus/test_canal.py: 100%

12 statements  

« prev     ^ index     » next       coverage.py v7.14.1, created at 2026-05-28 06:38 +0000

1# type: ignore 

2from biobb_common.tools import test_fixtures as fx 

3from biobb_dna.curvesplus.biobb_canal import biobb_canal 

4 

5 

6class TestCanal(): 

7 def setup_class(self): 

8 fx.test_setup(self, 'biobb_canal') 

9 

10 def teardown_class(self): 

11 fx.test_teardown(self) 

12 

13 def test_canal(self): 

14 returncode = biobb_canal( 

15 properties=self.properties, **self.paths) 

16 assert fx.not_empty(self.paths['output_zip_path']) 

17 assert fx.exe_success(returncode) 

18 assert fx.equal(self.paths['output_zip_path'], self.paths['ref_output_zip_path'])