From: Alfredo Deza Date: Tue, 20 Aug 2013 13:53:37 +0000 (-0400) Subject: removing unused tests X-Git-Tag: v1.2.2~4^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=5736675fe464d19c6ec268192863bf8152d297ef;p=ceph-deploy.git removing unused tests Signed-off-by: Alfredo Deza --- diff --git a/ceph_deploy/tests/unit/hosts/test_hosts.py b/ceph_deploy/tests/unit/hosts/test_hosts.py index 4b67f04..ac087c0 100644 --- a/ceph_deploy/tests/unit/hosts/test_hosts.py +++ b/ceph_deploy/tests/unit/hosts/test_hosts.py @@ -53,19 +53,3 @@ class TestGetDistro(object): def test_get_fallback(self): result = hosts._get_distro('Solaris', 'Debian') assert result.__name__.endswith('debian') - - -class TestDetectPackageManagers(object): - - def test_centos_is_yum(self): - result = hosts.detect_package_manager('centos') - assert result is 'yum' - - def test_scientific_is_yum(self): - result = hosts.detect_package_manager('scientific') - assert result is 'yum' - - def test_redhat_is_yum(self): - result = hosts.detect_package_manager('redhat') - assert result is 'yum' -