summaryrefslogtreecommitdiff
path: root/tests/unittests/test_version.py
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2018-05-22 16:06:41 -0400
committerScott Moser <smoser@brickies.net>2018-05-22 16:06:41 -0400
commit5446c788160412189200c6cc688b14c9f9071943 (patch)
tree4fc9a16dd57028a2adbca4cf35acbccae13d7f1e /tests/unittests/test_version.py
parent529d48f69d3784b2314397f5eab9d750ab03cf6a (diff)
downloadvyos-cloud-init-5446c788160412189200c6cc688b14c9f9071943.tar.gz
vyos-cloud-init-5446c788160412189200c6cc688b14c9f9071943.zip
Update version.version_string to contain packaged version.
This modifies version.version_string to support having the package build write the *packaged* version in with a easy replace. Then, when cloud-init reports its version it will include the full packaged version. Also modified here are upstream package build files to get that done. Note part of the trickery in packages/debian/rules.in was to avoid the 'basic' templater consuming the '$variable' variable names. LP: #1770712
Diffstat (limited to 'tests/unittests/test_version.py')
-rw-r--r--tests/unittests/test_version.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/unittests/test_version.py b/tests/unittests/test_version.py
deleted file mode 100644
index d012f69d..00000000
--- a/tests/unittests/test_version.py
+++ /dev/null
@@ -1,14 +0,0 @@
-# This file is part of cloud-init. See LICENSE file for license information.
-
-from cloudinit.tests.helpers import CiTestCase
-from cloudinit import version
-
-
-class TestExportsFeatures(CiTestCase):
- def test_has_network_config_v1(self):
- self.assertIn('NETWORK_CONFIG_V1', version.FEATURES)
-
- def test_has_network_config_v2(self):
- self.assertIn('NETWORK_CONFIG_V2', version.FEATURES)
-
-# vi: ts=4 expandtab