]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-deploy.git/commitdiff
[BZ-1304533] tests: ensure that ceph and radosgw are the default deb components BZ-1304533
authorAlfredo Deza <adeza@redhat.com>
Mon, 29 Aug 2016 19:00:16 +0000 (15:00 -0400)
committerAlfredo Deza <adeza@redhat.com>
Mon, 29 Aug 2016 19:00:16 +0000 (15:00 -0400)
Signed-off-by: Alfredo Deza <adeza@redhat.com>
ceph_deploy/tests/test_install.py

index a8bd3265f2fadfe77490c004d55693b6533e8e47..373403d9126ea5202d301f9bd219675a3bdef7c1 100644 (file)
@@ -64,7 +64,7 @@ class TestDetectComponents(object):
         self.distro.is_deb = True
         result = sorted(install.detect_components(self.args, self.distro))
         assert result == sorted([
-            'ceph-osd', 'ceph-mds', 'ceph-mon', 'radosgw'
+            'ceph', 'radosgw'
         ])
 
     def test_install_all_with_other_options_returns_all_packages_deb(self):
@@ -76,7 +76,7 @@ class TestDetectComponents(object):
         self.args.install_osd = True
         result = sorted(install.detect_components(self.args, self.distro))
         assert result == sorted([
-            'ceph-osd', 'ceph-mds', 'ceph-mon', 'radosgw'
+            'ceph', 'radosgw'
         ])
 
     def test_install_all_returns_all_packages_rpm(self):