add test orphans disks
This commit is contained in:
parent
0e85b81857
commit
15d9c86104
|
@ -2393,6 +2393,19 @@ def test_list_erasures(user3: UserClientFlask):
|
||||||
assert status == '200 OK'
|
assert status == '200 OK'
|
||||||
assert txt in body
|
assert txt in body
|
||||||
|
|
||||||
|
uri = '/inventory/device/erasure/1/'
|
||||||
|
body, status = user3.get(uri)
|
||||||
|
assert status == '200 OK'
|
||||||
|
assert txt not in body
|
||||||
|
|
||||||
|
dev = Device.query.first()
|
||||||
|
dev.binding.kangaroo = True
|
||||||
|
db.session.commit()
|
||||||
|
|
||||||
|
body, status = user3.get(uri)
|
||||||
|
assert status == '200 OK'
|
||||||
|
assert txt in body
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.mvp
|
@pytest.mark.mvp
|
||||||
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
||||||
|
|
Reference in New Issue