]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-deploy.git/commitdiff
remove 'ceph' from install tests as it is no longer used
authorAlfredo Deza <adeza@redhat.com>
Wed, 13 May 2015 13:09:34 +0000 (09:09 -0400)
committerAlfredo Deza <adeza@redhat.com>
Wed, 13 May 2015 13:09:34 +0000 (09:09 -0400)
Signed-off-by: Alfredo Deza <adeza@redhat.com>
ceph_deploy/tests/test_install.py

index f90ea0abb9f7a6b62a86b29b74ffd143a1aa1402..c6df508d991cfe2f55f334b809a6750544047cbd 100644 (file)
@@ -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):