diff options
author | Samuel Munilla <smunilla@redhat.com> | 2016-03-07 14:18:35 -0500 |
---|---|---|
committer | Samuel Munilla <smunilla@redhat.com> | 2016-03-23 13:06:16 -0400 |
commit | eb369effbc557502b7c2ee58950391ae71b809c8 (patch) | |
tree | 7bb3ce320f9ecbd53d9fa3c6f448ffad8566d2e5 /utils/test | |
parent | ae78eb0bbe01edd97cd25f13adcce0bf38278ff3 (diff) | |
download | openshift-eb369effbc557502b7c2ee58950391ae71b809c8.tar.gz openshift-eb369effbc557502b7c2ee58950391ae71b809c8.tar.bz2 openshift-eb369effbc557502b7c2ee58950391ae71b809c8.tar.xz openshift-eb369effbc557502b7c2ee58950391ae71b809c8.zip |
a-o-i: Add 3.2 to list of supported versions
Diffstat (limited to 'utils/test')
-rw-r--r-- | utils/test/cli_installer_tests.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/utils/test/cli_installer_tests.py b/utils/test/cli_installer_tests.py index 6ba5ec1eb..784a30830 100644 --- a/utils/test/cli_installer_tests.py +++ b/utils/test/cli_installer_tests.py @@ -480,7 +480,7 @@ class UnattendedCliTests(OOCliFixture): self.assertEquals('openshift-enterprise', written_config['variant']) # We didn't specify a version so the latest should have been assumed, # and written to disk: - self.assertEquals('3.1', written_config['variant_version']) + self.assertEquals('3.2', written_config['variant_version']) # Make sure the correct value was passed to ansible: inventory = ConfigParser.ConfigParser(allow_no_value=True) @@ -960,12 +960,13 @@ class AttendedCliTests(OOCliFixture): cli_input = build_input(hosts=[ ('10.0.0.1', True, False)], ssh_user='root', - variant_num=2, + variant_num=3, confirm_facts='y') self.cli_args.append("install") result = self.runner.invoke(cli.cli, self.cli_args, input=cli_input) self.assert_result(result, 0) + print result.output self.assertTrue("NOTE: Add a total of 3 or more Masters to perform an HA installation." not in result.output) |