From: Jan Fajerski Date: Mon, 26 Nov 2018 13:54:50 +0000 (+0100) Subject: ceph-volume: add Batch smoketest X-Git-Tag: v12.2.11~107^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b06aff8f652855f10f14473bf352b55920ca9ba6;p=ceph.git ceph-volume: add Batch smoketest Signed-off-by: Jan Fajerski (cherry picked from commit 936ee680f7633620c8a1127db9630a22326b9e2c) --- diff --git a/src/ceph-volume/ceph_volume/tests/devices/lvm/test_batch.py b/src/ceph-volume/ceph_volume/tests/devices/lvm/test_batch.py index d1f9046a019d..50ef61b8331e 100644 --- a/src/ceph-volume/ceph_volume/tests/devices/lvm/test_batch.py +++ b/src/ceph-volume/ceph_volume/tests/devices/lvm/test_batch.py @@ -1,6 +1,13 @@ from ceph_volume.devices.lvm import batch +class TestBatchSmoke(object): + + def test_batch_instance(self, is_root): + b = batch.Batch([]) + b.main() + + class TestFilterDevices(object): def test_filter_used_device(self, factory):