We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2ee1b1 commit 630110fCopy full SHA for 630110f
1 file changed
tests/integration/test_unit.py
@@ -239,3 +239,17 @@ async def test_resolve_local(event_loop):
239
# Errored units won't get cleaned up unless we force them.
240
await asyncio.gather(*(machine.destroy(force=True)
241
for machine in model.machines.values()))
242
+
243
244
+@base.bootstrapped
245
+@pytest.mark.asyncio
246
+async def test_unit_introspect(event_loop):
247
+ async with base.CleanModel() as model:
248
+ await model.deploy('ubuntu', series='jammy')
249
+ await model.wait_for_idle(status="active")
250
251
+ await model.deploy('juju-introspect',
252
+ channel='edge',
253
+ series='jammy',
254
+ to='0',
255
+ )
0 commit comments