We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4445fc commit c35f6c4Copy full SHA for c35f6c4
tests/test_common.py
@@ -0,0 +1,13 @@
1
+"""Common unittests."""
2
+
3
+import unittest2 as unittest
4
5
+from domain_models import VERSION
6
7
8
+class VersionTest(unittest.TestCase):
9
+ """Version constant tests."""
10
11
+ def test_version_follows_semantic_versioning(self):
12
+ """Test that version follows semantic versioning."""
13
+ self.assertEquals(len(VERSION.split('.')), 3)
0 commit comments