hackertray/test/version_test.py

10 lines
214 B
Python
Raw Permalink Normal View History

import unittest
from hackertray import Version
class VersionTest(unittest.TestCase):
def runTest(self):
version = Version.latest()
assert version
if __name__ == '__main__':
unittest.main()