mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-10 20:01:54 +01:00
e89c50f77d
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 == "25ec85aa9c2803ece6397e4147449ea6"
|
|
|
|
|
|
def test_md5_security():
|
|
result = md5('slpkg/security.py')
|
|
assert result == "3f10bf99b21f66af879dc0882bcd92b3"
|