diff options
author | Devan Goodwin <dgoodwin@redhat.com> | 2015-11-03 08:37:31 -0400 |
---|---|---|
committer | Devan Goodwin <dgoodwin@redhat.com> | 2015-11-03 08:37:31 -0400 |
commit | f91c0cac0b6e671d5ad70543054a17178c5f0a46 (patch) | |
tree | f9839f38700e1628097ae9f1f8dd910e3dcd46bb /utils/test | |
parent | 39250a47afca63ef0b5a73158a2c9b15443a4235 (diff) | |
download | openshift-f91c0cac0b6e671d5ad70543054a17178c5f0a46.tar.gz openshift-f91c0cac0b6e671d5ad70543054a17178c5f0a46.tar.bz2 openshift-f91c0cac0b6e671d5ad70543054a17178c5f0a46.tar.xz openshift-f91c0cac0b6e671d5ad70543054a17178c5f0a46.zip |
Add a simple version for the installer config file.
Diffstat (limited to 'utils/test')
-rw-r--r-- | utils/test/oo_config_tests.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/test/oo_config_tests.py b/utils/test/oo_config_tests.py index b88218459..480560542 100644 --- a/utils/test/oo_config_tests.py +++ b/utils/test/oo_config_tests.py @@ -105,6 +105,7 @@ class LegacyOOConfigTests(OOInstallFixture): def test_load_config_memory(self): self.assertEquals('openshift-enterprise', self.cfg.settings['variant']) self.assertEquals('3.0', self.cfg.settings['variant_version']) + self.assertEquals('v1', self.cfg.settings['version']) self.assertEquals(3, len(self.cfg.hosts)) h1 = self.cfg.get_host('10.0.0.1') @@ -152,6 +153,7 @@ class OOConfigTests(OOInstallFixture): [host['ip'] for host in ooconfig.settings['hosts']]) self.assertEquals('openshift-enterprise', ooconfig.settings['variant']) + self.assertEquals('v1', ooconfig.settings['version']) def test_load_complete_facts(self): cfg_path = self.write_config(os.path.join(self.work_dir, @@ -189,6 +191,7 @@ class OOConfigTests(OOInstallFixture): self.assertTrue('ansible_ssh_user' in written_config) self.assertTrue('variant' in written_config) + self.assertEquals('v1', written_config['version']) # Some advanced settings should not get written out if they # were not specified by the user: |