This is an automated email from the ASF dual-hosted git repository. brondsem pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/allura.git
commit 320a479450a7eee16df6f00ab9718f9b88b772e6 Author: Dave Brondsema <[email protected]> AuthorDate: Mon May 24 21:03:34 2021 +0000 Add a test for task "count" command --- Allura/allura/tests/test_commands.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Allura/allura/tests/test_commands.py b/Allura/allura/tests/test_commands.py index 784116a..af64994 100644 --- a/Allura/allura/tests/test_commands.py +++ b/Allura/allura/tests/test_commands.py @@ -285,6 +285,10 @@ class TestTaskCommand(object): exit_code = taskd.TaskCommand('task').run([test_config, 'list']) assert_equal(exit_code, 0) + def test_count(self): + exit_code = taskd.TaskCommand('task').run([test_config, 'count']) + assert_equal(exit_code, 0) + def test_retry(self): # self.test_commit() exit_code = taskd.TaskCommand('task').run([
