blob: e8add2c7b834abf80acaa902a11edaa9db5c4871 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import pytest
from cephadm.services.osd import RemoveUtil, OSD
from tests import mock
from .fixtures import with_cephadm_module
@pytest.fixture()
def cephadm_module():
with with_cephadm_module({}) as m:
yield m
@pytest.fixture()
def rm_util():
with with_cephadm_module({}) as m:
r = RemoveUtil.__new__(RemoveUtil)
r.__init__(m)
yield r
@pytest.fixture()
def osd_obj():
with mock.patch("cephadm.services.osd.RemoveUtil"):
o = OSD(0, mock.MagicMock())
yield o
|