diff options
Diffstat (limited to 'test/mocks/mass-pnf-sim/test_lifecycle.py')
-rw-r--r-- | test/mocks/mass-pnf-sim/test_lifecycle.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/mocks/mass-pnf-sim/test_lifecycle.py b/test/mocks/mass-pnf-sim/test_lifecycle.py index 9c5ff89be..dc1160c75 100644 --- a/test/mocks/mass-pnf-sim/test_lifecycle.py +++ b/test/mocks/mass-pnf-sim/test_lifecycle.py @@ -126,3 +126,9 @@ def test_stop_idempotence(args_stop, caplog, capfd): assert f'Stopping pnf-sim-lw-{instance} instance:' in caplog.text assert 'ROP_file_creator.sh already not running' in msg.out assert 'Simulator containers are already down' in msg.out + caplog.clear() + +def test_clean(args_clean): + m = MassPnfSim(args_clean) + m.clean() + assert not glob(f"{m.sim_dirname_pattern}*") |