Initial version

This commit is contained in:
sebastiankloth
2022-04-20 14:08:38 +02:00
commit 68b8e1a305
48 changed files with 5133 additions and 0 deletions

7
test/test_atoms.py Normal file
View File

@ -0,0 +1,7 @@
from mdevaluate import atoms
def test_compare_regex():
assert atoms.compare_regex(['OW', ], 'O')[0] == False
assert atoms.compare_regex(['WO', ], 'O')[0] == False
assert atoms.compare_regex(['O', ], 'O')[0] == True