From: Alfredo Deza Date: Wed, 13 May 2015 13:09:34 +0000 (-0400) Subject: remove 'ceph' from install tests as it is no longer used X-Git-Tag: v1.5.24~7^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=23c6d836ecc6d528e8e0c619b70d82352460ad9c;p=ceph-deploy.git remove 'ceph' from install tests as it is no longer used Signed-off-by: Alfredo Deza --- diff --git a/ceph_deploy/tests/test_install.py b/ceph_deploy/tests/test_install.py index f90ea0a..c6df508 100644 --- a/ceph_deploy/tests/test_install.py +++ b/ceph_deploy/tests/test_install.py @@ -57,7 +57,7 @@ class TestDetectComponents(object): self.distro.is_deb = True result = sorted(install.detect_components(self.args, self.distro)) assert result == sorted([ - 'ceph', 'ceph-osd', 'ceph-mds', 'ceph-mon', 'radosgw' + 'ceph-osd', 'ceph-mds', 'ceph-mon', 'radosgw' ]) def test_install_all_with_other_options_returns_all_packages_deb(self): @@ -69,7 +69,7 @@ class TestDetectComponents(object): self.args.install_osd = True result = sorted(install.detect_components(self.args, self.distro)) assert result == sorted([ - 'ceph', 'ceph-osd', 'ceph-mds', 'ceph-mon', 'radosgw' + 'ceph-osd', 'ceph-mds', 'ceph-mon', 'radosgw' ]) @@ -77,7 +77,7 @@ class TestDetectComponents(object): self.args.install_all = True result = sorted(install.detect_components(self.args, self.distro)) assert result == sorted([ - 'ceph', 'ceph-osd', 'ceph-mds', 'ceph-mon', 'ceph-radosgw' + 'ceph-osd', 'ceph-mds', 'ceph-mon', 'ceph-radosgw' ]) def test_install_all_with_other_options_returns_all_packages_rpm(self): @@ -87,7 +87,7 @@ class TestDetectComponents(object): self.args.install_osd = True result = sorted(install.detect_components(self.args, self.distro)) assert result == sorted([ - 'ceph', 'ceph-osd', 'ceph-mds', 'ceph-mon', 'ceph-radosgw' + 'ceph-osd', 'ceph-mds', 'ceph-mon', 'ceph-radosgw' ]) def test_install_only_one_component(self):