From f082568b9a09f117cd88dd18e7582a620540ff95 Mon Sep 17 00:00:00 2001 From: Gauvain Pocentek Date: Mon, 28 May 2018 08:23:00 +0200 Subject: Add feature flags deletion support --- tools/python_test_v4.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tools/python_test_v4.py') diff --git a/tools/python_test_v4.py b/tools/python_test_v4.py index 37f657a..1527c2e 100644 --- a/tools/python_test_v4.py +++ b/tools/python_test_v4.py @@ -665,6 +665,8 @@ assert(ns.kind == 'user') feat = gl.features.set('foo', 30) assert(feat.name == 'foo') assert(len(gl.features.list()) == 1) +feat.delete() +assert(len(gl.features.list()) == 0) # broadcast messages msg = gl.broadcastmessages.create({'message': 'this is the message'}) -- cgit v1.2.1