Coverage for biobb_model/test/unitests/test_model/test_fix_chirality.py: 100%
11 statements
« prev ^ index » next coverage.py v7.6.10, created at 2025-01-28 11:32 +0000
« prev ^ index » next coverage.py v7.6.10, created at 2025-01-28 11:32 +0000
1# type: ignore
2from biobb_common.tools import test_fixtures as fx
3from biobb_model.model.fix_chirality import fix_chirality
6class TestFixChirality:
7 def setup_class(self):
8 fx.test_setup(self, 'fix_chirality')
10 def teardown_class(self):
11 fx.test_teardown(self)
13 def test_launch(self):
14 fix_chirality(properties=self.properties, **self.paths)
15 assert fx.not_empty(self.paths['output_pdb_path'])
16 assert fx.equal(self.paths['output_pdb_path'], self.paths['reference_output_pdb_path'])