Coverage for biobb_godmd/test/unitests/test_godmd/test_godmd_prep.py: 100%

11 statements  

« prev     ^ index     » next       coverage.py v7.9.1, created at 2025-06-25 07:50 +0000

1# type: ignore 

2from biobb_common.tools import test_fixtures as fx 

3from biobb_godmd.godmd.godmd_prep import godmd_prep 

4 

5 

6class TestGOdMDPrep(): 

7 def setup_class(self): 

8 fx.test_setup(self, 'godmd_prep') 

9 

10 def teardown_class(self): 

11 fx.test_teardown(self) 

12 # pass 

13 

14 def test_godmd_prep(self): 

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

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

17 assert fx.not_empty(self.paths['output_aln_target_path']) 

18 # assert fx.equal(self.paths['output_traj_path'], self.paths['ref_output_traj_path']) 

19 # assert fx.equal(self.paths['output_rst_path'], self.paths['ref_output_rst_path'])