Coverage for biobb_dna/test/unitests/test_curvesplus/test_canal_unzip.py: 100%
14 statements
« prev ^ index » next coverage.py v7.6.10, created at 2025-01-28 10:36 +0000
« prev ^ index » next coverage.py v7.6.10, created at 2025-01-28 10:36 +0000
1# type: ignore
2from biobb_common.tools import test_fixtures as fx
3from biobb_dna.curvesplus.canal_unzip import canal_unzip
6class TestCanalUnzip():
7 def setup_class(self):
8 fx.test_setup(self, 'canal_unzip')
10 def teardown_class(self):
11 fx.test_teardown(self)
13 def test_canal_unzip(self):
14 returncode = canal_unzip(
15 properties=self.properties, **self.paths)
16 assert fx.not_empty(self.paths['output_path'])
17 assert fx.not_empty(self.paths['output_list_path'])
18 assert fx.exe_success(returncode)
19 assert fx.equal(
20 self.paths['output_path'],
21 self.paths['ref_output_path'])
22 assert fx.equal(
23 self.paths['output_list_path'],
24 self.paths['ref_output_list_path'])