mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-10 20:01:54 +01:00
7e58adb490
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
11 lines
273 B
Python
11 lines
273 B
Python
from slpkg.md5sum import md5
|
|
|
|
|
|
def test_md5_superuser():
|
|
result = md5('slpkg/superuser.py')
|
|
assert result == "c6a3576c247bda199c75b43540bfc3d7"
|
|
|
|
|
|
def test_md5_security():
|
|
result = md5('slpkg/security.py')
|
|
assert result == "36c3a9213a27ab0b49e9c1bdd5bd2db6"
|