slpkg/tests/test_file_size.py

11 lines
292 B
Python
Raw Normal View History

2020-02-14 13:35:27 +01:00
from slpkg.file_size import FileSize
def test_FileSize():
url = "https://mirrors.slackware.com/slackware/slackware64-14.2/ChangeLog.txt"
lc = "tests/test_units.py"
fs1 = FileSize(url)
fs2 = FileSize(lc)
assert fs1.server() is not None
assert fs2.local() is not None