mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-17 07:48:18 +01:00
055786a6a0
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
19 lines
489 B
Python
19 lines
489 B
Python
import unittest
|
|
from slpkg.file_size import FileSize
|
|
|
|
|
|
class TestFileSize(unittest.TestCase):
|
|
|
|
def test_FileSize(self):
|
|
"""Testing the remote and local servers
|
|
"""
|
|
url = "https://mirrors.slackware.com/slackware/slackware64-14.2/ChangeLog.txt"
|
|
lc = "test_units.py"
|
|
fs1 = FileSize(url)
|
|
fs2 = FileSize(lc)
|
|
self.assertIsNotNone(fs1.server())
|
|
self.assertIsNotNone(fs2.local())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|