Skip to content

Commit 91f8ddb

Browse files
committed
test standard cleaning
1 parent 8645e70 commit 91f8ddb

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/test_preprocess_tools.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,10 @@ def test_add_hydrogens_and_remove_water(path_to_cif, cleaning_fxns):
3838
path_to_cleaned_file = "tidy_" + path_to_cif
3939
os.remove(path_to_cleaned_file)
4040
assert "Cleaned File" in result
41+
42+
43+
def test_standard_cleaning(path_to_cif, cleaning_fxns):
44+
result = cleaning_fxns._standard_cleaning(path_to_cif)
45+
path_to_cleaned_file = "tidy_" + path_to_cif
46+
os.remove(path_to_cleaned_file)
47+
assert "Cleaned File" in result

0 commit comments

Comments
 (0)