Skip to content

Commit

Permalink
add extra test
Browse files Browse the repository at this point in the history
  • Loading branch information
eloyfelix committed Oct 6, 2023
1 parent 3a60ab2 commit 7fabbfa
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,14 @@ def test_suppliers():
rd_it_mols = [Chem.MolToSmiles(x[1]) for x in it_mol_supplier(mols, gen_ids=True)]

assert smi_mols == sdf_mols == sdfgz_mols == it_mols == rd_it_mols
assert (
len(smi_mols)
== len(sdf_mols)
== len(sdfgz_mols)
== len(it_mols)
== len(rd_it_mols)
== len(smiles_list)
)


def test_get_mol_supplier():
Expand Down

0 comments on commit 7fabbfa

Please sign in to comment.