mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-13 20:01:48 +01:00
Added slack version test
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
parent
ce04039ea1
commit
cb2216b79e
1 changed files with 13 additions and 0 deletions
13
tests/test_slack_version.py
Normal file
13
tests/test_slack_version.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
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()
|
Loading…
Reference in a new issue