mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-05 11:02:14 +01:00
0c1ef40bd0
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
11 lines
No EOL
272 B
Python
11 lines
No EOL
272 B
Python
from slpkg.md5sum import md5
|
|
|
|
|
|
def test_md5_superuser():
|
|
result = md5('slpkg/superuser.py')
|
|
assert result == "e6cebdf37fbc1b8e9d3c5e3e53b300c1"
|
|
|
|
|
|
def test_md5_security():
|
|
result = md5('slpkg/security.py')
|
|
assert result == "d395d2fcf1c7b1a91ef6ce3dc8eb047b" |