Source code for tests.other.test_version

# !/usr/bin/python
# -*- coding: utf-8 -*-
"""testing the main"""
import unittest

import plasoscaffolder


[docs]class VersionTest(unittest.TestCase): """the version in init test"""
[docs] def testGetVersion(self): """testing the get version""" actual = plasoscaffolder.__version__ self.assertEqual('20170614', actual)
if __name__ == '__main__': unittest.main()