mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-31 10:26:39 +01:00
f41b395d1f
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
15 lines
318 B
Python
15 lines
318 B
Python
import unittest
|
|
from slpkg.slack.slack_version import slack_ver
|
|
|
|
|
|
class TestSlackVersion(unittest.TestCase):
|
|
|
|
def test_slack_version(self):
|
|
"""Testing the current Slackware version
|
|
"""
|
|
ver = '15.0'
|
|
self.assertEqual(ver, slack_ver())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|