# HG changeset patch # User Denis Laxalde # Date 1563787932 -7200 # Node ID 38dfd90c335a24e418e96635243e9f366a28516b # Parent 58f132392cba346ecf8ac501085357ad17b86e46 [test] Add an "actionverb" attribute to test commands diff -r 58f132392cba -r 38dfd90c335a cubicweb/test/unittest_cwctl.py --- a/cubicweb/test/unittest_cwctl.py Mon Jul 22 11:25:17 2019 +0200 +++ b/cubicweb/test/unittest_cwctl.py Mon Jul 22 11:32:12 2019 +0200 @@ -85,6 +85,7 @@ class _TestCommand(InstanceCommand): "I need some doc" name = "test" + actionverb = 'failtested' def test_instance(self, appid): pass @@ -93,6 +94,7 @@ class _TestFailCommand(InstanceCommand): "I need some doc" name = "test_fail" + actionverb = 'tested' def test_fail_instance(self, appid): raise Exception()