mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-07 17:24:57 +01:00
cb2216b79e
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
13 lines
257 B
Python
13 lines
257 B
Python
import unittest
|
|
from slpkg.slack.slack_version import slack_ver
|
|
|
|
|
|
class TestSlackVersion(unittest.TestCase):
|
|
|
|
def test_slack_version(self):
|
|
ver = '15.0'
|
|
self.assertEqual(ver, slack_ver())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|