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):
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):